You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
430 B
Go

// Package esp8266Server -----------------------------
// @file : main.go
// @author : JJXu
// @contact : wavingbear@163.com
// @time : 2024/5/21 上午10:23
// -------------------------------------------
package main
import (
"esp8266Server/httpServer"
"esp8266Server/tcp"
"fmt"
)
func main() {
tcp.InitTcpServer()
fmt.Println("tcp Server started successfully!")
httpServer.InitHttpServer()
//select {}
}