-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdevc.go
More file actions
32 lines (27 loc) · 684 Bytes
/
devc.go
File metadata and controls
32 lines (27 loc) · 684 Bytes
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
32
/*
devc: Containers for Developers (Container as a Directory)!
(command line utility)
Offers developers a user-friendly interface for constructing applications
using containers! Generate reusable usable virtual environments from
Containerfiles or container images, activate them, engage in development,
implement changes, and reuse seamlessly
*/
package main
import (
"fmt"
"os"
"github.com/bruttazz/devc/cmd"
"github.com/bruttazz/devc/internal/configs"
)
var version string = ""
func main() {
defer func() {
if v := recover(); v != nil {
fmt.Printf("\n[Error] : %v\n", v)
os.Exit(1)
}
}()
configs.LoadConfig()
configs.Config.Version = version
cmd.Execute()
}