mirror of
https://github.com/acepanel/panel.git
synced 2026-02-04 11:27:17 +08:00
9 lines
186 B
Go
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)
|
|
}
|