move http api into api/http. Update exports script to specify packages instead of trying to find them automatically
parent
e512b5d5cc
commit
014504377f
|
@ -9,7 +9,7 @@ if [ -d $HOME/go ]; then
|
|||
fi
|
||||
|
||||
pushd src
|
||||
export packages=$(ls -d * | egrep -v 'google|launchpad|github' | tr '\n' ' ')
|
||||
export packages="api/http common coordinator datastore engine interfaces main parser protocol"
|
||||
popd
|
||||
|
||||
snappy_dir=/tmp/snappychronosdb
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
package hapi
|
||||
package api
|
||||
|
||||
import (
|
||||
log "code.google.com/p/log4go"
|
|
@ -1,4 +1,4 @@
|
|||
package hapi
|
||||
package api
|
||||
|
||||
import (
|
||||
"bytes"
|
|
@ -1,4 +1,4 @@
|
|||
package hapi
|
||||
package api
|
||||
|
||||
type Configuration struct {
|
||||
HttpAddr string
|
|
@ -1,4 +1,4 @@
|
|||
package hapi
|
||||
package api
|
||||
|
||||
import (
|
||||
"net/http"
|
|
@ -1,4 +1,4 @@
|
|||
package hapi
|
||||
package api
|
||||
|
||||
import (
|
||||
"compress/gzip"
|
Loading…
Reference in New Issue