-
Notifications
You must be signed in to change notification settings - Fork 1
/
uc.go
28 lines (20 loc) · 936 Bytes
/
uc.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
package main
// ////////////////////////////////////////////////////////////////////////////////// //
// //
// Copyright (c) 2024 ESSENTIAL KAOS //
// Apache License, Version 2.0 <https://www.apache.org/licenses/LICENSE-2.0> //
// //
// ////////////////////////////////////////////////////////////////////////////////// //
import (
_ "embed"
CLI "github.com/essentialkaos/uc/cli"
)
// ////////////////////////////////////////////////////////////////////////////////// //
//go:embed go.mod
var gomod []byte
// gitrev is short hash of the latest git commit
var gitrev string
// ////////////////////////////////////////////////////////////////////////////////// //
func main() {
CLI.Run(gitrev, gomod)
}