mirror of
https://github.com/nxshock/mssqlbulkloader.git
synced 2025-07-12 01:53:12 +05:00
17 lines
153 B
Go
17 lines
153 B
Go
package main
|
|
|
|
import (
|
|
"log"
|
|
"os"
|
|
)
|
|
|
|
func init() {
|
|
log.SetFlags(0)
|
|
}
|
|
|
|
func main() {
|
|
err := app.Run(os.Args)
|
|
if err != nil {
|
|
log.Fatalln(err)
|
|
}
|
|
}
|