generate: Make the table type an alias so we don't have a million of em

This commit is contained in:
Sasha Koshka 2025-10-13 10:33:36 -04:00
parent cbfb513933
commit 4575fa229b

View File

@ -24,7 +24,7 @@ const preamble = `
const static = `
// Table is a KTV table with an undefined schema.
type Table map[uint16] any
type Table = map[uint16] any
// Message is any message that can be sent along this protocol.
type Message interface {