Adds GetFollowedTags

This commit is contained in:
Paul Waldo 2023-03-12 09:25:45 -04:00
parent 9faaa4f0dc
commit 589be3c1f8
No known key found for this signature in database
GPG key ID: 7CD5C6BB0D0BB7F4
7 changed files with 168 additions and 5 deletions

25
.vscode/launch.json vendored Normal file
View file

@ -0,0 +1,25 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Launch Package",
"type": "go",
"request": "launch",
"mode": "auto",
"program": "${fileDirname}",
"console": "integratedTerminal"
},
{
"name": "mstdn",
"type": "go",
"request": "launch",
"mode": "auto",
// "cwd": "${workspaceFolder}/cmd/mstdn",
"program": "${workspaceFolder}/cmd/mstdn",
"console": "integratedTerminal"
}
]
}