release 0.1.3-beta (#19)

Co-authored-by: E99p1ant <[email protected]>
This commit is contained in:
Li4n0
2021-05-25 20:41:37 +08:00
committed by GitHub
co-authored by E99p1ant
parent 1144f67d37
commit cbbf3ba0ba
68 changed files with 640 additions and 197 deletions
-12
View File
@@ -1,12 +0,0 @@
language: go
go:
- "1.12"
- tip
env:
- GO111MODULE=on
before_install:
- go get github.com/mattn/goveralls
install:
- go get -t ./...
script:
- $HOME/gopath/bin/goveralls -service=travis-ci
-10
View File
@@ -1,10 +0,0 @@
all: fmt vet lint
fmt:
go fmt .
vet:
go vet .
lint:
golint .
+1 -1
View File
@@ -4,7 +4,7 @@ import (
"time"
)
var recordChan = make(chan BaseRecord, 100)
var recordChan = make(chan BaseRecord, 1000)
type Record interface {
GetFlag() string