Remove unused session ID field

This commit is contained in:
r 2023-10-07 10:20:11 +00:00
parent c7f40c1e15
commit 927072e26a
3 changed files with 0 additions and 10 deletions

View file

@ -16,10 +16,6 @@ func NewRandID(n int) (string, error) {
return enc.EncodeToString(data), nil
}
func NewSessionID() (string, error) {
return NewRandID(24)
}
func NewCSRFToken() (string, error) {
return NewRandID(24)
}