wfc-server/api/user_action_response.go
ppeb 41f7fddc4d
Revert "Revert motd, clear, and user action response"
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.
2025-03-05 20:33:20 -06:00

12 lines
130 B
Go

package api
import (
"wwfc/database"
)
type UserActionResponse struct {
User database.User
Success bool
Error string
}