-
Notifications
You must be signed in to change notification settings - Fork 0
/
rds-migrator.go
31 lines (22 loc) · 980 Bytes
/
rds-migrator.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
//go:build linux
// +build linux
package main
// ////////////////////////////////////////////////////////////////////////////////// //
// //
// Copyright (c) 2024 ESSENTIAL KAOS //
// Apache License, Version 2.0 <https://www.apache.org/licenses/LICENSE-2.0> //
// //
// ////////////////////////////////////////////////////////////////////////////////// //
import (
_ "embed"
APP "github.com/essentialkaos/rds-migrator/app"
)
// ////////////////////////////////////////////////////////////////////////////////// //
//go:embed go.mod
var gomod []byte
// gitrev is short hash of the latest git commit
var gitrev string
// ////////////////////////////////////////////////////////////////////////////////// //
func main() {
APP.Run(gitrev, gomod)
}