11 lines
150 B
Go
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
|
|
}
|