package services import ( "sorbet/pkg/app" ) type Service struct { inners []Service } func (s Service) Init(ctx *app.Context) error { //TODO implement me panic("implement me") } func (s Service) Start() error { //TODO implement me panic("implement me") } func (s Service) Stop() error { //TODO implement me panic("implement me") }