go fmt
This commit is contained in:
parent
9ce79c5e8f
commit
a1170dfc70
2 changed files with 9 additions and 7 deletions
|
@ -1,9 +1,11 @@
|
|||
package main
|
||||
|
||||
import "fmt"
|
||||
import "os"
|
||||
import "bufio"
|
||||
import "strings"
|
||||
import (
|
||||
"bufio"
|
||||
"fmt"
|
||||
"os"
|
||||
"strings"
|
||||
)
|
||||
|
||||
const VALUE = "value"
|
||||
const SERIES = "series"
|
||||
|
|
|
@ -1,11 +1,11 @@
|
|||
package main
|
||||
|
||||
import (
|
||||
"bufio"
|
||||
"fmt"
|
||||
"os"
|
||||
"strings"
|
||||
)
|
||||
import "os"
|
||||
import "bufio"
|
||||
import "strings"
|
||||
|
||||
type Record struct {
|
||||
floor, bars, beam string
|
||||
|
|
Loading…
Reference in a new issue