mirror of
https://github.com/WiiLink24/wfc-server.git
synced 2026-04-25 16:23:38 -05:00
12 lines
130 B
Go
12 lines
130 B
Go
package api
|
|
|
|
import (
|
|
"wwfc/database"
|
|
)
|
|
|
|
type UserActionResponse struct {
|
|
User database.User
|
|
Success bool
|
|
Error string
|
|
}
|