mirror of
https://github.com/eiblog/eiblog.git
synced 2026-02-04 13:52:26 +08:00
16 lines
187 B
Go
16 lines
187 B
Go
// Package main provides ...
|
|
package main
|
|
|
|
import (
|
|
// "net/http"
|
|
// _ "net/http/pprof"
|
|
)
|
|
|
|
func main() {
|
|
// pprof
|
|
// go func() {
|
|
// http.ListenAndServe(":6060", nil)
|
|
// }()
|
|
Run()
|
|
}
|