Files
2025-12-15 17:55:32 +08:00

11 lines
150 B
Go

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