CHANGE: added Frontend + auth

This commit is contained in:
2025-02-19 21:16:58 +01:00
parent f2e9eaf092
commit 35778e58b3
25 changed files with 2160 additions and 22 deletions

View File

@@ -7,7 +7,6 @@ import (
// Returns env with default fallback value.
//
// Params:
//
// key - enviroment var name
// fallback - default value
func GetEnv(key, fallback string) string {

9
Backend/helper/types.go Normal file
View File

@@ -0,0 +1,9 @@
package helper
import "time"
type TimeFormValue struct {
TsFrom time.Time
TsTo time.Time
CardUID string
}