chore: refresh gramsrv public release

This commit is contained in:
A 2026-06-30 14:37:43 +08:00
parent 75cebe8dbf
commit 70b6820474
1274 changed files with 378751 additions and 59919 deletions

View file

@ -9,6 +9,7 @@ import (
const (
destroyAuthKeyRequestTypeID = 0xd1435160
destroyAuthKeyOkTypeID = 0xf660e1d4
destroyAuthKeyFailTypeID = 0xea109b13
)
type destroyAuthKeyRequest struct{}
@ -31,3 +32,10 @@ func (*destroyAuthKeyOk) Encode(b *bin.Buffer) error {
b.PutID(destroyAuthKeyOkTypeID)
return nil
}
type destroyAuthKeyFail struct{}
func (*destroyAuthKeyFail) Encode(b *bin.Buffer) error {
b.PutID(destroyAuthKeyFailTypeID)
return nil
}