feat: add routers pkg

This commit is contained in:
2025-10-17 22:41:21 +03:00
parent a856c476d9
commit 60a0120b58
12 changed files with 27 additions and 17 deletions

10
tasks.toml Normal file
View File

@@ -0,0 +1,10 @@
[dev]
run = 'mise dev:tmux'
["dev:tmux"]
description = 'Run BE & FE in tmux'
run = [
'tmux new-window "cd backend; go install; PORT=8912 air"',
'tmux split-window "cd frontend; bun install; PORT=8913 bun src/index.tsx"',
'sleep 0.1 && (xdg-open "http://localhost:8913" || open "http://localhost:8913")'
]