Skip to content

Commit a9f12ec

Browse files
committed
Implement tools.List
1 parent 9e998a5 commit a9f12ec

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

60 files changed

+896
-322
lines changed

Gopkg.lock

Lines changed: 13 additions & 13 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Gopkg.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
required = ["goa.design/goa/codegen/generator"]
2828

2929
[[constraint]]
30-
name = "github.com/Sirupsen/logrus"
30+
name = "github.com/sirupsen/logrus"
3131
version = "1.2.0"
3232

3333
[[constraint]]

bufferflow_default.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package main
22

33
import (
4-
log "github.com/Sirupsen/logrus"
4+
log "github.com/sirupsen/logrus"
55
)
66

77
type BufferflowDefault struct {

bufferflow_timed.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"encoding/json"
55
"time"
66

7-
log "github.com/Sirupsen/logrus"
7+
log "github.com/sirupsen/logrus"
88
)
99

1010
type BufferflowTimed struct {

bufferflow_timedraw.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"encoding/json"
55
"time"
66

7-
log "github.com/Sirupsen/logrus"
7+
log "github.com/sirupsen/logrus"
88
)
99

1010
type BufferflowTimedRaw struct {

certificates.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ import (
2424
"text/template"
2525
"time"
2626

27-
log "github.com/Sirupsen/logrus"
2827
"github.com/gin-gonic/gin"
28+
log "github.com/sirupsen/logrus"
2929
)
3030

3131
var (

conn.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,11 @@ import (
1818
"os"
1919
"path/filepath"
2020

21-
log "github.com/Sirupsen/logrus"
2221
"github.com/arduino/arduino-create-agent/upload"
2322
"github.com/arduino/arduino-create-agent/utilities"
2423
"github.com/gin-gonic/gin"
2524
socketio "github.com/googollee/go-socket.io"
25+
log "github.com/sirupsen/logrus"
2626
)
2727

2828
type connection struct {

discovery.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@ import (
3333
"strings"
3434
"time"
3535

36-
log "github.com/Sirupsen/logrus"
3736
"github.com/oleksandr/bonjour"
37+
log "github.com/sirupsen/logrus"
3838
)
3939

4040
const timeoutConst = 2

hub.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ import (
1212
"strconv"
1313
"strings"
1414

15-
log "github.com/Sirupsen/logrus"
1615
"github.com/arduino/arduino-create-agent/upload"
1716
"github.com/kardianos/osext"
17+
log "github.com/sirupsen/logrus"
1818
)
1919

2020
type hub struct {

main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,14 @@ import (
1515
"text/template"
1616
"time"
1717

18-
log "github.com/Sirupsen/logrus"
1918
"github.com/arduino/arduino-create-agent/tools"
2019
"github.com/arduino/arduino-create-agent/utilities"
2120
"github.com/arduino/arduino-create-agent/v2"
2221
"github.com/gin-gonic/gin"
2322
"github.com/go-ini/ini"
2423
cors "github.com/itsjamie/gin-cors"
2524
"github.com/kardianos/osext"
25+
log "github.com/sirupsen/logrus"
2626
//"github.com/sanbornm/go-selfupdate/selfupdate" #included in update.go to change heavily
2727
)
2828

0 commit comments

Comments
 (0)