reverse/main.go
Lunny Xiao 87cf7611cd
Some checks failed
continuous-integration/drone/push Build is failing
fix lints
2020-01-19 16:11:21 +08:00

23 lines
427 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"
"xorm.io/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)
}
}