-
Notifications
You must be signed in to change notification settings - Fork 0
/
rds-sync.go
31 lines (22 loc) · 975 Bytes
/
rds-sync.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"
SYNC "github.com/essentialkaos/rds/sync"
)
// ////////////////////////////////////////////////////////////////////////////////// //
//go:embed go.mod
var gomod []byte
// gitrev is short hash of the latest git commit
var gitrev string
// ////////////////////////////////////////////////////////////////////////////////// //
func main() {
SYNC.Init(gitrev, gomod)
}