summaryrefslogtreecommitdiff
path: root/internal/config
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2024-10-04 23:11:44 +0300
committerPaul Buetow <paul@buetow.org>2024-10-04 23:11:44 +0300
commitdd959fcfb3a3aa5a01d3d3912b1c976e653b71d8 (patch)
tree31d36f3f736b8401ba4948ae2c5f6f4e80871b82 /internal/config
parent8c178c66d575018695d4a036630a140319705066 (diff)
can post to linkedin initially
Diffstat (limited to 'internal/config')
-rw-r--r--internal/config/secrets.go3
1 files changed, 3 insertions, 0 deletions
diff --git a/internal/config/secrets.go b/internal/config/secrets.go
index bd35fb7..e480e67 100644
--- a/internal/config/secrets.go
+++ b/internal/config/secrets.go
@@ -10,6 +10,9 @@ import (
type Secrets struct {
MastodonURL string
MastodonAccessToken string
+ LinkedInClientID string
+ LinkedInSecret string
+ LinkedInRedirectURL string
}
func NewSecrets(configPath string) (Secrets, error) {