simplFT/server/simplFTP.go

10 lines
115 B
Go
Raw Normal View History

2017-10-20 15:08:25 +00:00
package main
import (
"github.com/metonimie/simpleFTP/server/server"
2017-10-20 15:08:25 +00:00
)
func main() {
2017-11-26 19:57:57 +00:00
server.StartFtpServer()
2017-10-20 15:08:25 +00:00
}