for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
package main
import (
"github.com/SerhiiCho/shoshka-go/cmd"
"github.com/SerhiiCho/shoshka-go/utils"
"github.com/joho/godotenv"
)
func init() {
err := godotenv.Load()
utils.HandleError(err, "Error loading .env file")
}
func main() {
cmd.Execute()