Files
teletypegames/main.go
T
2025-12-07 11:32:45 +01:00

12 lines
158 B
Go
Executable File

package main
import (
"teletype_softwares/domain"
"teletype_softwares/http"
)
func main() {
domain := domain.NewDomain()
http.StartHttpServer(domain)
}