mirror of
https://github.com/yusing/godoxy.git
synced 2025-05-19 20:32:35 +02:00
9 lines
140 B
Go
9 lines
140 B
Go
package migrations
|
|
|
|
import "github.com/yusing/go-proxy/pkg"
|
|
|
|
type migration struct {
|
|
Name string
|
|
Run func() error
|
|
Since pkg.Version
|
|
}
|