Categorygithub.com/rakunlabs/into
repositorypackage
0.4.0
Repository: https://github.com/rakunlabs/into.git
Documentation: pkg.go.dev

# Packages

No description provided by the author

# README

into

License Go PKG Go Report Card

Helper function to initiate the project easly.

go get github.com/rakunlabs/into

Usage

func main() {
	into.Init(run,
		into.WithLogger(slog.Default()),
		into.WithMsgf("myservice [%s]", "v0.1.0"),
	)
}

func run(ctx context.Context) error {
	return nil
}