1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00
This commit is contained in:
Guillaume J. Charmes 2013-03-12 05:36:37 -07:00
parent f2dc079c05
commit 45a8bba15e
5 changed files with 10 additions and 10 deletions

View file

@ -1,9 +1,9 @@
package docker
import (
"./fs"
"encoding/json"
"errors"
"./fs"
"github.com/kr/pty"
"io"
"io/ioutil"

View file

@ -65,9 +65,9 @@ func TestCommitRun(t *testing.T) {
[]string{"/world"},
img,
&Config{
Ram: 33554432,
},
)
Ram: 33554432,
},
)
if err != nil {
t.Fatal(err)
}

View file

@ -1,10 +1,10 @@
package fs
import (
"../future"
"database/sql"
"errors"
"fmt"
"../future"
_ "github.com/mattn/go-sqlite3"
"github.com/shykes/gorp" //Forked to implement CreateTablesOpts
"io"

View file

@ -1,15 +1,15 @@
package server
import (
".."
"../fs"
"../future"
"../rcli"
"bufio"
"bytes"
"encoding/json"
"errors"
"fmt"
".."
"../fs"
"../future"
"../rcli"
"io"
"net/http"
"net/url"

View file

@ -1,8 +1,8 @@
package docker
import (
"fmt"
"./future"
"fmt"
"sync"
"time"
)