6
0

server.go 147 B

1234567891011
  1. package main
  2. import (
  3. "log"
  4. "net/http"
  5. )
  6. func main() {
  7. log.Fatal(http.ListenAndServe(":8080",
  8. http.FileServer(http.Dir("./swaggerui/"))))
  9. }