-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmain.go
More file actions
30 lines (27 loc) · 881 Bytes
/
Copy pathmain.go
File metadata and controls
30 lines (27 loc) · 881 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
/*
**********************************************************************
* -------------------------------------------------------------------
* Project Name : Abdal 4iProto Server
* File Name : main.go
* Programmer : Ebrahim Shafiei (EbraSha)
* Email : Prof.Shafiei@Gmail.com
* Created On : 2026-06-30 04:12:29
* Description : Minimal entry point for Abdal 4iProto Server
* -------------------------------------------------------------------
*
* "Coding is an engaging and beloved hobby for me. I passionately and insatiably pursue knowledge in cybersecurity and programming."
* – Ebrahim Shafiei
*
**********************************************************************
*/
package main
import (
"Abdal_4iProto_Server/core/app"
"Abdal_4iProto_Server/core/service"
)
func main() {
if service.HandleServiceCommands() {
return
}
app.Run()
}