Change package imports for go1
authorRobert Sesek <rsesek@bluestatic.org>
Sat, 12 May 2012 18:56:12 +0000 (14:56 -0400)
committerRobert Sesek <rsesek@bluestatic.org>
Sat, 12 May 2012 18:56:18 +0000 (14:56 -0400)
main.go
server/server.go

diff --git a/main.go b/main.go
index 361865791df2154cc7de8142acd0f1166b26fd4e..6db71ff382b63340c4463e916300af006cd1196d 100644 (file)
--- a/main.go
+++ b/main.go
@@ -10,8 +10,8 @@
 package main
 
 import (
-       "./config"
-       "./server"
+       "github.com/rsesek/armadillo/config"
+       "github.com/rsesek/armadillo/server"
        "flag"
        "fmt"
        "os"
index d5941a826e2b7379da687f8dc8fc5ff7883d7347..87847405f3376bde95ab0a9a3be98f755a6df06c 100644 (file)
@@ -10,7 +10,7 @@
 package server
 
 import (
-       "../config"
+       "github.com/rsesek/armadillo/config"
        "encoding/json"
        "fmt"
        "io"