Files
arenax-server/internal/model/common.go

17 lines
172 B
Go

package model
type LoginOut struct {
Token string
}
type UpdateOut struct {
Success bool
}
type DeleteOut struct {
Success bool
}
type CreateOut struct {
Id int64
}