feat: add getting visitor counter

This commit is contained in:
axolotlmaid 2024-09-25 17:55:40 +01:00
parent 0f2d805df2
commit bd31a363df
4 changed files with 58 additions and 0 deletions

View file

@ -0,0 +1,5 @@
package model
type VisitorCounter struct {
Counter uint32 `json:"counter"`
}