From 3d8812fbd0091d2ef636949628c52bf9f48617a6 Mon Sep 17 00:00:00 2001 From: Julien Dessaux Date: Thu, 14 Nov 2024 01:34:29 +0100 Subject: feat(tfstated): implement HTTP basic auth --- pkg/model/account.go | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 pkg/model/account.go (limited to 'pkg/model/account.go') diff --git a/pkg/model/account.go b/pkg/model/account.go new file mode 100644 index 0000000..cbb6407 --- /dev/null +++ b/pkg/model/account.go @@ -0,0 +1,13 @@ +package model + +import "time" + +type Account struct { + Id int + Username string + Password string + IsAdmin bool + Created time.Time + LastLogin time.Time + Settings any +} -- cgit v1.2.3