Added create field

This commit is contained in:
perp 2024-06-03 14:59:31 +01:00
parent 143fd837b6
commit c390bf9f7c

View File

@ -14,10 +14,13 @@
package v1 package v1
import "time"
// Account response // Account response
type Account struct { type Account struct {
ID int `json:"id"` ID int `json:"id"`
Username string `json:"username"` Username string `json:"username"`
Created time.Time `json:"created"`
} }
// Register body // Register body