akiyosi.goneovim/cmd/goneovim/main.go

16 lines
212 B
Go
Raw Normal View History

2019-11-02 10:54:41 +09:00
package main
import (
// "net/http"
// _ "net/http/pprof"
"github.com/akiyosi/goneovim/editor"
)
func main() {
// go func() {
// http.ListenAndServe("localhost:6080", nil)
// }()
editor.InitEditor()
}