12 lines
158 B
Go
Executable File
12 lines
158 B
Go
Executable File
package main
|
|
|
|
import (
|
|
"teletype_softwares/domain"
|
|
"teletype_softwares/http"
|
|
)
|
|
|
|
func main() {
|
|
domain := domain.NewDomain()
|
|
http.StartHttpServer(domain)
|
|
}
|