Files
atom/modules/auth/service/role.go
2023-02-04 18:53:17 +08:00

21 lines
272 B
Go
Executable File

package service
import (
"context"
)
type RoleService interface {
Create(ctx context.Context) error
}
type roleService struct {
}
func NewRoleService() RoleService {
return &roleService{}
}
func (svc *roleService) Create(ctx context.Context) error {
return nil
}