mirror of
https://github.com/eyebluecn/tank.git
synced 2024-04-21 12:32:16 +00:00
17 lines
333 B
Go
17 lines
333 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"github.com/aliyun/aliyun-oss-go-sdk/oss"
|
|
"github.com/eyebluecn/tank/code/core"
|
|
"github.com/eyebluecn/tank/code/support"
|
|
_ "github.com/go-sql-driver/mysql"
|
|
)
|
|
|
|
func main() {
|
|
fmt.Println("OSS Go SDK Version: ", oss.Version)
|
|
core.APPLICATION = &support.TankApplication{}
|
|
core.APPLICATION.Start()
|
|
|
|
}
|