grafana/pkg/services/user/user.go

11 lines
175 B
Go
Raw Normal View History

package user
import (
"context"
)
type Service interface {
Create(context.Context, *CreateUserCommand) (*User, error)
Delete(context.Context, *DeleteUserCommand) error
}