main.go 251 B

123456789101112131415161718
  1. package main
  2. import (
  3. "context"
  4. "coredemo/framework"
  5. "net/http"
  6. "time"
  7. )
  8. func main() {
  9. server := &http.Server{
  10. Addr: ":8080",
  11. // 自定义的请求核心处理函数
  12. Handler: framework.NewCore(),
  13. }
  14. }