-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmain.go
More file actions
21 lines (13 loc) · 808 Bytes
/
main.go
File metadata and controls
21 lines (13 loc) · 808 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/*****************************************************************************************************************/
// @author Michael Roberts <michael@observerly.com>
// @package @observerly/skysolve
// @license Copyright © 2021-2025 observerly
/*****************************************************************************************************************/
package main
/*****************************************************************************************************************/
import "github.com/observerly/skysolve/cmd"
/*****************************************************************************************************************/
func main() {
cmd.Execute()
}
/*****************************************************************************************************************/