🚚 Get rid of internal package
I don't need to hide anything
This commit is contained in:
parent
a9fe6f30fc
commit
5282c1fd26
4 changed files with 6 additions and 6 deletions
|
|
@ -4,8 +4,8 @@ import (
|
|||
"fmt"
|
||||
"os"
|
||||
|
||||
e "codeberg.org/danjones000/utils/cli/err"
|
||||
"codeberg.org/danjones000/utils/convids"
|
||||
"codeberg.org/danjones000/utils/internal/cli"
|
||||
"github.com/spf13/pflag"
|
||||
)
|
||||
|
||||
|
|
@ -26,11 +26,11 @@ func main() {
|
|||
}
|
||||
|
||||
data, err := convids.NewData(dataPath)
|
||||
cli.HandleErr(err)
|
||||
e.HandleErr(err)
|
||||
|
||||
convids.WalkFiles(data, false, false, func(s *convids.Show, path string) error {
|
||||
fmt.Printf("%s for %+v\n", path, s)
|
||||
return nil
|
||||
})
|
||||
fmt.Println("\nDone!")
|
||||
fmt.Println("Done!")
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue