| 1234567891011121314151617181920 |
- // =================================================================================
- // Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
- // =================================================================================
- package account
- import (
- "star/api/account"
- "star/internal/logic/users"
- )
- type ControllerV1 struct {
- users *users.Users
- }
- func NewV1() account.IAccountV1 {
- return &ControllerV1{
- users: users.New(),
- }
- }
|