1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00

Put back the relative paths for dev purpose

This commit is contained in:
Guillaume J. Charmes 2013-03-12 05:17:51 -07:00
parent e0b09d4933
commit 18f4e7e196
6 changed files with 11 additions and 11 deletions

View file

@ -1,8 +1,8 @@
package client
import (
"github.com/dotcloud/docker/future"
"github.com/dotcloud/docker/rcli"
"../future"
"../rcli"
"io"
"io/ioutil"
"log"

View file

@ -1,7 +1,7 @@
package main
import (
"github.com/dotcloud/docker/client"
"../client"
"flag"
"log"
"os"

View file

@ -1,8 +1,8 @@
package main
import (
"github.com/dotcloud/docker"
"github.com/dotcloud/docker/server"
".."
"../server"
"flag"
"log"
)

View file

@ -1,7 +1,7 @@
package fs
import (
"github.com/dotcloud/docker/fake"
"../fake"
"io/ioutil"
"os"
"testing"

View file

@ -1,7 +1,7 @@
package fs
import (
"github.com/dotcloud/docker/fake"
"../fake"
"errors"
"fmt"
"io/ioutil"

View file

@ -6,10 +6,10 @@ import (
"encoding/json"
"errors"
"fmt"
"github.com/dotcloud/docker"
"github.com/dotcloud/docker/fs"
"github.com/dotcloud/docker/future"
"github.com/dotcloud/docker/rcli"
".."
"../fs"
"../future"
"../rcli"
"io"
"net/http"
"net/url"