Guillaume J. Charmes authored on 2013/03/12 21:36:37
Showing 5 changed files
... ...
@@ -1,9 +1,9 @@
1 1
 package docker
2 2
 
3 3
 import (
4
+	"./fs"
4 5
 	"encoding/json"
5 6
 	"errors"
6
-	"./fs"
7 7
 	"github.com/kr/pty"
8 8
 	"io"
9 9
 	"io/ioutil"
... ...
@@ -65,9 +65,9 @@ func TestCommitRun(t *testing.T) {
65 65
 		[]string{"/world"},
66 66
 		img,
67 67
 		&Config{
68
-		Ram: 33554432,
69
-	},
70
-		)
68
+			Ram: 33554432,
69
+		},
70
+	)
71 71
 	if err != nil {
72 72
 		t.Fatal(err)
73 73
 	}
... ...
@@ -1,10 +1,10 @@
1 1
 package fs
2 2
 
3 3
 import (
4
+	"../future"
4 5
 	"database/sql"
5 6
 	"errors"
6 7
 	"fmt"
7
-	"../future"
8 8
 	_ "github.com/mattn/go-sqlite3"
9 9
 	"github.com/shykes/gorp" //Forked to implement CreateTablesOpts
10 10
 	"io"
... ...
@@ -1,15 +1,15 @@
1 1
 package server
2 2
 
3 3
 import (
4
+	".."
5
+	"../fs"
6
+	"../future"
7
+	"../rcli"
4 8
 	"bufio"
5 9
 	"bytes"
6 10
 	"encoding/json"
7 11
 	"errors"
8 12
 	"fmt"
9
-	".."
10
-	"../fs"
11
-	"../future"
12
-	"../rcli"
13 13
 	"io"
14 14
 	"net/http"
15 15
 	"net/url"
... ...
@@ -1,8 +1,8 @@
1 1
 package docker
2 2
 
3 3
 import (
4
-	"fmt"
5 4
 	"./future"
5
+	"fmt"
6 6
 	"sync"
7 7
 	"time"
8 8
 )