mirror of
https://github.com/jkaninda/mysql-bkup.git
synced 2025-12-06 13:39:41 +01:00
17 lines
278 B
Go
17 lines
278 B
Go
package main
|
|
|
|
//main
|
|
/*****
|
|
* MySQL Backup & Restore
|
|
* @author Jonas Kaninda
|
|
* @license MIT License <https://opensource.org/licenses/MIT>
|
|
* @link https://github.com/jkaninda/mysql-bkup
|
|
**/
|
|
import "github.com/jkaninda/mysql-bkup/cmd"
|
|
|
|
func main() {
|
|
|
|
cmd.Execute()
|
|
|
|
}
|