diff options
| author | Paul Buetow <paul@buetow.org> | 2024-10-04 23:11:44 +0300 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2024-10-04 23:11:44 +0300 |
| commit | dd959fcfb3a3aa5a01d3d3912b1c976e653b71d8 (patch) | |
| tree | 31d36f3f736b8401ba4948ae2c5f6f4e80871b82 /internal/platforms/linkedin/linkedin.go | |
| parent | 8c178c66d575018695d4a036630a140319705066 (diff) | |
can post to linkedin initially
Diffstat (limited to 'internal/platforms/linkedin/linkedin.go')
| -rw-r--r-- | internal/platforms/linkedin/linkedin.go | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/internal/platforms/linkedin/linkedin.go b/internal/platforms/linkedin/linkedin.go new file mode 100644 index 0000000..0f6ef2c --- /dev/null +++ b/internal/platforms/linkedin/linkedin.go @@ -0,0 +1,12 @@ +package linkedin + +import ( + "context" + + "codeberg.org/snonux/gos/internal/config" + "codeberg.org/snonux/gos/internal/entry" +) + +func Post(ctx context.Context, args config.Args, ent entry.Entry) error { + return oauth(args) +} |
