Initial commit

This commit is contained in:
2026-03-05 11:21:18 +03:00
commit 056e2ad529
18 changed files with 729 additions and 0 deletions

20
.vscode/launch.json vendored Normal file
View File

@@ -0,0 +1,20 @@
{
// 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",
"cwd": "${workspaceFolder}/config",
"program": "${workspaceFolder}/cmd/payouts",
"env": {
"CONFIG_PATH": "${workspaceFolder}/payouts.properties"
}
}
]
}