diff options
author | Runxi Yu <me@runxiyu.org> | 2024-12-12 06:44:47 +0800 |
---|---|---|
committer | Runxi Yu <me@runxiyu.org> | 2024-12-12 06:44:47 +0800 |
commit | ebffb995c6581724b0b6760bf0c68f0f9d0c4160 (patch) | |
tree | aa9f232f988130a5d8dda9fc1fbd13cf8fc187a2 /panics.go | |
parent | CAP LS: Take version as integer (diff) | |
download | meseircd-ebffb995c6581724b0b6760bf0c68f0f9d0c4160.tar.gz meseircd-ebffb995c6581724b0b6760bf0c68f0f9d0c4160.tar.zst meseircd-ebffb995c6581724b0b6760bf0c68f0f9d0c4160.zip |
Use uint32 for SIDs, uint64 for CIDs
Diffstat (limited to 'panics.go')
-rw-r--r-- | panics.go | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -1,5 +1,6 @@ package main const ( - panicType = "type error" + panicType = "type error" + panicNotImplemented = "not implemented" ) |