diff options
| author | Bobby <[email protected]> | 2025-09-24 21:02:56 +0530 |
|---|---|---|
| committer | Bobby <[email protected]> | 2025-09-24 21:02:56 +0530 |
| commit | c9e0fe763bf5521003719b3f174c473a978f523e (patch) | |
| tree | 79fad5f05c95d00132ab363a942669fe85acd100 /types | |
| parent | fa084ee95be0a5ec7b4a91dffa87467179fe435f (diff) | |
| download | thunderbird-ai-compose-server-c9e0fe763bf5521003719b3f174c473a978f523e.tar.xz thunderbird-ai-compose-server-c9e0fe763bf5521003719b3f174c473a978f523e.zip | |
setup support for authorization
Diffstat (limited to 'types')
| -rw-r--r-- | types/types.go | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/types/types.go b/types/types.go index 955d085..0d7ca44 100644 --- a/types/types.go +++ b/types/types.go @@ -8,10 +8,11 @@ const ( ) type ServerConfig struct { - Port int - Provider Provider - Model string - APIKey string + AuthorizationKey string + Port int + Provider Provider + Model string + APIKey string } type Identity struct { |
