-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #7 from TTNomi/feature/timeformat
time parser
- Loading branch information
Showing
3 changed files
with
81 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
build: | ||
GOOS=darwin GOARCH=amd64 go build -o bin/awpark.amd64 main.go | ||
GOOS=darwin GOARCH=arm64 go build -o bin/awpark.arm64 main.go | ||
mkdir -p bin | ||
lipo -create -output ./bin/awpark bin/awpark.amd64 bin/awpark.arm64 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
package main | ||
|
||
import ( | ||
"github.com/sipt/awpark/cmd" | ||
"github.com/sipt/awpark/cmd" | ||
) | ||
|
||
func main() { | ||
cmd.Execute() | ||
} | ||
} |