account_new.go 450 B

1234567891011121314151617181920
  1. // =================================================================================
  2. // Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
  3. // =================================================================================
  4. package account
  5. import (
  6. "star/api/account"
  7. "star/internal/logic/users"
  8. )
  9. type ControllerV1 struct {
  10. users *users.Users
  11. }
  12. func NewV1() account.IAccountV1 {
  13. return &ControllerV1{
  14. users: users.New(),
  15. }
  16. }