2
0
mirror of https://github.com/acepanel/panel.git synced 2026-02-04 11:27:17 +08:00
Files
panel/internal/user.go
2024-05-29 21:31:01 +08:00

9 lines
186 B
Go

package internal
import "github.com/TheTNB/panel/app/models"
type User interface {
Create(name, password string) (models.User, error)
Update(user models.User) (models.User, error)
}