diff options
author | Runxi Yu <me@runxiyu.org> | 2024-12-07 21:13:28 +0800 |
---|---|---|
committer | Runxi Yu <me@runxiyu.org> | 2024-12-07 21:13:28 +0800 |
commit | 8c18330aa3976aa981bbe4f135960a92b5923fb6 (patch) | |
tree | 6b1548fce387c3d86f110732f971d85f64990c9a /const.go | |
download | meseircd-8c18330aa3976aa981bbe4f135960a92b5923fb6.tar.gz meseircd-8c18330aa3976aa981bbe4f135960a92b5923fb6.tar.zst meseircd-8c18330aa3976aa981bbe4f135960a92b5923fb6.zip |
Initial commit
Diffstat (limited to 'const.go')
-rw-r--r-- | const.go | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/const.go b/const.go new file mode 100644 index 0000000..962db26 --- /dev/null +++ b/const.go @@ -0,0 +1,7 @@ +package main + +const ( + MaxlenTags = 8191 + MaxlenTagData = MaxlenTags - 2 + MaxlenBody = 510 +) |