Files
hmmmm/flatbuffers/auth/auth.fbs
2026-03-30 16:20:14 +03:00

12 lines
261 B
Plaintext

namespace hmmmm.auth;
// Client → Server: SHA-512(access_token + str(unix_timestamp / 30))
table AuthRequest {
hash: [ubyte]; // 64 bytes
}
// Server → Client: seat assigned, current emulation state echoed
table AuthResponse {
seat_id: uint64;
}