Go语言实现简单的文件服务器

前端之家收集整理的这篇文章主要介绍了Go语言实现简单的文件服务器前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
package main

import (
	"fmt"
	"net/http"
)

func main() {
	http.Handle("/",http.FileServer(http.Dir("./")))
	e := http.ListenAndServe(":8080",nil)
	fmt.Println(e)
}
原文链接:https://www.f2er.com/go/190361.html

猜你在找的Go相关文章