initial commit

This commit is contained in:
ston1th 2022-07-10 01:10:31 +02:00
commit f48fa210bb
49 changed files with 4058 additions and 0 deletions

13
pkg/server/helper.go Normal file
View file

@ -0,0 +1,13 @@
// Copyright (C) 2022 Marius Schellenberger
package server
import (
"time"
)
const (
day = time.Hour * 24
min = time.Second * 30
max = day * 90
)