reverse/main.go
2021-06-03 11:55:30 +08:00

23 lines
436 B
Go

// Copyright 2019 The Xorm Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package main
import (
"fmt"
"gitea.com/chenli/reverse/cmd"
_ "github.com/denisenkom/go-mssqldb"
_ "github.com/go-sql-driver/mysql"
_ "github.com/lib/pq"
_ "github.com/mattn/go-sqlite3"
)
func main() {
if err := cmd.Execute(); err != nil {
fmt.Println(err)
}
}