requests-log db

This commit is contained in:
2023-01-13 17:17:17 +01:00
parent 0ec7a9d274
commit e737cd9d5c
24 changed files with 1037 additions and 283 deletions

View File

@@ -66,3 +66,13 @@ func (id ClientID) IntID() int64 {
func (id ClientID) String() string {
return strconv.FormatInt(int64(id), 10)
}
type RequestID int64
func (id RequestID) IntID() int64 {
return int64(id)
}
func (id RequestID) String() string {
return strconv.FormatInt(int64(id), 10)
}