Initial commit chat microservice

This commit is contained in:
2022-10-19 17:51:51 +02:00
parent f30f9090b3
commit bdd1a655d4
10 changed files with 50 additions and 761 deletions

9
cmd/chat-service/main.go Normal file
View File

@@ -0,0 +1,9 @@
package main
import (
"twitch-clone/chat-service/app"
)
func main() {
app.Run()
}