通知短信+运营短信,5秒速达,支持群发助手一键发送🚀高效触达和通知客户 广告
[TOC] ## 使用http 简易版本 ``` package main import "net/http" func main() { fs := http.FileServer(http.Dir("image_test/")) http.Handle("/static/", http.StripPrefix("/static", fs)) http.ListenAndServe(":8888", nil) } ```