mirror of
https://github.com/WiiLink24/wfc-server.git
synced 2026-04-21 00:37:33 -05:00
This reverts commit 3144bd7cf8.
The reason this commit had to be made was because certain apis were PR'd
upstream, but were unwanted and thus removed in a separate commit. It
would likely have been better to drop the commits pushed upstream but
it's too late to fix that, so now we have a revert of a revert.
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
|
|
}
|