-
Notifications
You must be signed in to change notification settings - Fork 1
/
main.go
25 lines (22 loc) · 913 Bytes
/
main.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
// Package main is the entry point of the program.
package main
// Import necessary packages and libraries.
import (
"github.com/ibilalkayy/proctl/cmd"
// The following import statements import specific commands from the proctl tool.
// The "_" before the package means that the package is being imported for its side-effects only
// i.e., it's only being imported to execute an initialization function.
_ "github.com/ibilalkayy/proctl/cmd/board"
_ "github.com/ibilalkayy/proctl/cmd/member"
_ "github.com/ibilalkayy/proctl/cmd/profile"
_ "github.com/ibilalkayy/proctl/cmd/project"
_ "github.com/ibilalkayy/proctl/cmd/user"
_ "github.com/ibilalkayy/proctl/cmd/work"
_ "github.com/ibilalkayy/proctl/cmd/workspace"
)
// Function main is the entry point of the program.
func main() {
// Call the Execute function from the cmd package.
// This will start the execution of the program.
cmd.Execute()
}