mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
10 lines
124 B
Go
10 lines
124 B
Go
|
package user
|
||
|
|
||
|
import (
|
||
|
"context"
|
||
|
)
|
||
|
|
||
|
type Service interface {
|
||
|
Create(context.Context, *CreateUserCommand) (*User, error)
|
||
|
}
|