You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
OneAuth/cli/main.go

20 lines
335 B
Go

11 months ago
//
// main.go
// Copyright (C) 2024 veypi <i@veypi.com>
// 2025-03-04 16:08:06
// Distributed under terms of the MIT license.
//
package main
import (
3 weeks ago
"github.com/veypi/vbase"
"github.com/veypi/vbase/cfg"
"github.com/veypi/vigo"
11 months ago
)
10 months ago
func main() {
app := vigo.New("vbase", vbase.Router, cfg.Global, vbase.Init)
panic(app.Run())
11 months ago
}