Intermediate commit.

This commit is contained in:
Ben Johnson
2013-10-12 00:28:46 -06:00
parent 89334df5ae
commit eb78d96a20
27 changed files with 953 additions and 923 deletions

View File

@ -4,7 +4,6 @@ import (
"net/http"
"net/url"
"github.com/coreos/etcd/command"
"github.com/coreos/go-raft"
"github.com/gorilla/mux"
)
@ -13,7 +12,7 @@ import (
type Server interface {
CommitIndex() uint64
Term() uint64
Dispatch(command.Command, http.ResponseWriter, *http.Request)
Dispatch(raft.Command, http.ResponseWriter, *http.Request)
}
// This is the default implementation of the Server interface.