Running go fmt
This commit is contained in:
parent
d5c1554496
commit
c676da9a30
6 changed files with 12 additions and 12 deletions
|
@ -1,9 +1,9 @@
|
|||
package main
|
||||
|
||||
import (
|
||||
"net"
|
||||
"log"
|
||||
"github.com/metonimie/simpleFTP/server/server"
|
||||
"log"
|
||||
"net"
|
||||
)
|
||||
|
||||
func main() {
|
||||
|
|
|
@ -1,13 +1,13 @@
|
|||
package server
|
||||
|
||||
import (
|
||||
"net"
|
||||
"strings"
|
||||
"os"
|
||||
"log"
|
||||
"io/ioutil"
|
||||
"bytes"
|
||||
"io/ioutil"
|
||||
"log"
|
||||
"net"
|
||||
"os"
|
||||
"strconv"
|
||||
"strings"
|
||||
)
|
||||
|
||||
// PATH is the constant which should contain the fixed path where the simpleFTP server will run
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
package server
|
||||
|
||||
import (
|
||||
"net"
|
||||
"bufio"
|
||||
"io"
|
||||
"log"
|
||||
"bufio"
|
||||
"net"
|
||||
)
|
||||
|
||||
func HandleConnection(c net.Conn) {
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
package server
|
||||
|
||||
import (
|
||||
"testing"
|
||||
"math/rand"
|
||||
"testing"
|
||||
)
|
||||
|
||||
func TestMakeStringStack(t *testing.T) {
|
||||
|
|
Loading…
Reference in a new issue