diff options
author | Julien Dessaux | 2024-11-15 23:48:35 +0100 |
---|---|---|
committer | Julien Dessaux | 2024-11-15 23:48:35 +0100 |
commit | 478f42f8a9f070cef9e8c0b81dc7bd4c24bacde8 (patch) | |
tree | 2140b7b89ddf04ae3d9b149bf6d51061769178c5 /pkg/model | |
parent | feat(tfstated): implement HTTP basic auth (diff) | |
download | tfstated-478f42f8a9f070cef9e8c0b81dc7bd4c24bacde8.tar.gz tfstated-478f42f8a9f070cef9e8c0b81dc7bd4c24bacde8.tar.bz2 tfstated-478f42f8a9f070cef9e8c0b81dc7bd4c24bacde8.zip |
chore(tfstated): use a struct{} as context.Context key
Diffstat (limited to 'pkg/model')
-rw-r--r-- | pkg/model/account.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/pkg/model/account.go b/pkg/model/account.go index cbb6407..86032b8 100644 --- a/pkg/model/account.go +++ b/pkg/model/account.go @@ -2,6 +2,8 @@ package model import "time" +type AccountContextKey struct{} + type Account struct { Id int Username string |