mirror of
https://github.com/InazumaV/Ratte.git
synced 2026-02-04 04:30:09 +00:00
18 lines
305 B
Go
18 lines
305 B
Go
package main
|
|
|
|
import (
|
|
"github.com/InazumaV/Ratte-Interface/panel"
|
|
v2b "github.com/InazumaV/Ratte-Panel-V2b"
|
|
log "github.com/sirupsen/logrus"
|
|
)
|
|
|
|
func main() {
|
|
c, err := panel.NewServer(nil, v2b.NewPanel())
|
|
if err != nil {
|
|
log.Fatalln(err)
|
|
}
|
|
if err = c.Run(); err != nil {
|
|
log.Fatalln(err)
|
|
}
|
|
}
|