13 lines
223 B
Go
13 lines
223 B
Go
|
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)
|
||
|
}
|