🚚 Get rid of internal package

I don't need to hide anything
This commit is contained in:
Dan Jones 2024-10-24 06:33:53 -05:00
commit 5282c1fd26
4 changed files with 6 additions and 6 deletions

13
cli/err/err.go Normal file
View file

@ -0,0 +1,13 @@
package err
import (
"fmt"
"os"
)
func HandleErr(err error) {
if err != nil {
fmt.Println(err)
os.Exit(1)
}
}