mirror of
https://github.com/akiyosi/goneovim.git
synced 2025-08-30 14:39:23 +02:00
16 lines
212 B
Go
16 lines
212 B
Go
|
package main
|
||
|
|
||
|
import (
|
||
|
// "net/http"
|
||
|
// _ "net/http/pprof"
|
||
|
|
||
|
"github.com/akiyosi/goneovim/editor"
|
||
|
)
|
||
|
|
||
|
func main() {
|
||
|
// go func() {
|
||
|
// http.ListenAndServe("localhost:6080", nil)
|
||
|
// }()
|
||
|
editor.InitEditor()
|
||
|
}
|