move http api into api/http. Update exports script to specify packages instead of trying to find them automatically

pull/17/head
Paul Dix 2013-10-21 10:44:29 -04:00
parent e512b5d5cc
commit 014504377f
6 changed files with 6 additions and 6 deletions

View File

@ -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

View File

@ -1,4 +1,4 @@
package hapi
package api
import (
log "code.google.com/p/log4go"

View File

@ -1,4 +1,4 @@
package hapi
package api
import (
"bytes"

View File

@ -1,4 +1,4 @@
package hapi
package api
type Configuration struct {
HttpAddr string

View File

@ -1,4 +1,4 @@
package hapi
package api
import (
"net/http"

View File

@ -1,4 +1,4 @@
package hapi
package api
import (
"compress/gzip"