Init project

This commit is contained in:
2026-03-31 00:29:19 -05:00
commit c2aa7409cf
4 changed files with 66 additions and 0 deletions

17
cmd/go_migrate/main.go Normal file
View File

@@ -0,0 +1,17 @@
package main
import (
"time"
log "github.com/sirupsen/logrus"
)
func main() {
log.SetFormatter(&log.TextFormatter{
FullTimestamp: true,
TimestampFormat: time.StampMilli,
})
log.Info("Starting migration...")
log.Info("Migration completed successfully!")
}