12 lines
133 B
Go
12 lines
133 B
Go
|
package main
|
||
|
|
||
|
import "fmt"
|
||
|
|
||
|
/*
|
||
|
This app is a migration tool from v0.0.7 to v0.0.8
|
||
|
*/
|
||
|
|
||
|
func main() {
|
||
|
fmt.Println("Hello, World!")
|
||
|
}
|