fixed the code style with goimports

This commit is contained in:
Mebus
2017-11-25 19:42:48 +01:00
committed by Zlatko Čalušić
parent 6c846f856c
commit 75578acd66
4 changed files with 25 additions and 25 deletions

View File

@@ -2,14 +2,15 @@ package main
import (
"errors"
restserver "github.com/restic/rest-server"
"github.com/spf13/cobra"
"log"
"net/http"
"os"
"path/filepath"
"runtime"
"runtime/pprof"
restserver "github.com/restic/rest-server"
"github.com/spf13/cobra"
)
// cmdRoot is the base command when no other command has been specified.

View File

@@ -1,8 +1,9 @@
package main
import (
restserver "github.com/restic/rest-server"
"testing"
restserver "github.com/restic/rest-server"
)
func TestTLSSettings(t *testing.T) {