File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ package integration
2
2
3
3
import (
4
4
"encoding/json"
5
- "fmt "
5
+ "errors "
6
6
"io/ioutil"
7
7
"log"
8
8
"os"
Original file line number Diff line number Diff line change @@ -3,9 +3,9 @@ package github
3
3
import (
4
4
"bytes"
5
5
"crypto/md5"
6
- "fmt"
7
6
"hash"
8
7
"io"
8
+ "strconv"
9
9
"time"
10
10
11
11
"github.com/gofrs/uuid"
@@ -15,7 +15,6 @@ import (
15
15
// IssueData is a compact way to represent an issue
16
16
// so that templates can be expanded simply (without nested properties).
17
17
type IssueData struct {
18
-
19
18
// internal properties
20
19
uuidHash hash.Hash // to generate UUID's
21
20
buf * bytes.Buffer // to expand templates into
Original file line number Diff line number Diff line change @@ -3,6 +3,7 @@ package dstask
3
3
// main task data structures
4
4
5
5
import (
6
+ "errors"
6
7
"fmt"
7
8
"log"
8
9
"os"
You can’t perform that action at this time.
0 commit comments