This commit is contained in:
2021-12-21 00:17:09 +01:00
commit 1506a57231
11 changed files with 187 additions and 0 deletions

9
api/cmd/api/main.go Normal file
View File

@@ -0,0 +1,9 @@
package main
import router "downloader/internal/app/router"
func main() {
router.
NewRouter().
Run()
}