Files
atomctl/templates/project/app/services/test.go.tpl

11 lines
150 B
Smarty

package services
import "context"
// @provider
type test struct{}
func (t *test) Test(ctx context.Context) (string, error) {
return "Test", nil
}