1 Commits

Author SHA1 Message Date
db062baab2 implement template improvements
All checks were successful
Build and Publish / check-chart (push) Successful in 11s
Build and Publish / helm-release (push) Has been skipped
Build and Publish / release (push) Successful in 3m54s
2025-07-20 18:27:32 -04:00

View File

@ -31,12 +31,15 @@ import (
const terminationGracePeriod = 30 * time.Second const terminationGracePeriod = 30 * time.Second
var ( var (
flagSchema bool
// TODO: Register your service.AppService implementers here // TODO: Register your service.AppService implementers here
// This should be the only change necessary here
// NOTE: At least one service needs to add a dial option
// for transport credentials, otherwise you will have to do it here
appServices = []service.AppService{ appServices = []service.AppService{
&demo.DemoService{}, &demo.DemoService{},
} }
flagSchema bool
) )
func main() { func main() {