summaryrefslogtreecommitdiff
path: root/main.go
blob: e832d865ac3d194fbcf784dd0b98368d2e9fa027 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/*
 * @Author: EnderByEndera
 * @Date: 2020-12-04 15:03:24
 * @LastEditTime: 2021-01-06 09:50:51
 * @LastEditors: Please set LastEditors
 * @Description: Main Func Entry, use flags to give help
 * @FilePath: /commdetection/main.go
 */

package main

import (
	"commdetection/cmd"
	"commdetection/logger"
)

func main() {
	if err := cmd.Execute(); err != nil {
		logger.Fatalln(err)
	}
}