Skip to content

Commit df7cfc9

Browse files
committed
fix linting
1 parent b8382a3 commit df7cfc9

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

main.go

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,14 @@ import (
55
"log"
66
)
77

8-
const Version string = "1.0.0"
9-
const ProtocolVersion string = "5.0"
8+
const (
9+
10+
// Version defines the gophernotes version.
11+
Version string = "1.0.0"
12+
13+
// ProtocolVersion defines the Jupyter protocol version.
14+
ProtocolVersion string = "5.0"
15+
)
1016

1117
func main() {
1218

0 commit comments

Comments
 (0)