-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmain.go
More file actions
31 lines (27 loc) · 889 Bytes
/
main.go
File metadata and controls
31 lines (27 loc) · 889 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
/*
**********************************************************************
* -------------------------------------------------------------------
* Project Name : Abdal 4iProto Cli
* File Name : main.go
* Programmer : Ebrahim Shafiei (EbraSha)
* Email : Prof.Shafiei@Gmail.com
* Created On : 2026-05-27 20:24:00
* Description : Minimal application entrypoint delegating all logic
* to packages under core/.
* -------------------------------------------------------------------
*
* "Coding is an engaging and beloved hobby for me. I passionately and insatiably pursue knowledge in cybersecurity and programming."
* – Ebrahim Shafiei
*
**********************************************************************
*/
package main
import (
"os"
"abdal-4iproto-cli/core/cli"
)
func main() {
if err := cli.Execute(); err != nil {
os.Exit(1)
}
}