mirror of
https://github.com/airlabspl/uptimemonitor.git
synced 2025-08-14 04:09:15 +02:00
14 lines
171 B
Go
14 lines
171 B
Go
package uptimemonitor
|
|
|
|
import (
|
|
"time"
|
|
)
|
|
|
|
type User struct {
|
|
ID int64
|
|
Name string
|
|
Email string
|
|
PasswordHash string
|
|
CreatedAt time.Time
|
|
}
|