13 lines
223 B
Go
Raw Normal View History

2023-09-05 16:44:53 +02:00
package {{cookiecutter.mod_name}}
import "fmt"
type Config struct {
Parameter string
}
func Start(config Config) {
fmt.Println("Starting {{cookiecutter.project_slug}}")
fmt.Println("Parameter: ", config.Parameter)
}