diff --git a/main.go b/main.go index fbad375..4ffd673 100644 --- a/main.go +++ b/main.go @@ -2,8 +2,9 @@ package main import ( "flag" - "github.com/Difrex/rbmd/src/rbmd" "strings" + + "github.com/Difrex/rbmd/rbmd" // "log" ) diff --git a/src/rbmd/config.go b/rbmd/config.go similarity index 100% rename from src/rbmd/config.go rename to rbmd/config.go diff --git a/src/rbmd/connection.go b/rbmd/connection.go similarity index 100% rename from src/rbmd/connection.go rename to rbmd/connection.go diff --git a/src/rbmd/http.go b/rbmd/http.go similarity index 100% rename from src/rbmd/http.go rename to rbmd/http.go diff --git a/src/rbmd/leader.go b/rbmd/leader.go similarity index 100% rename from src/rbmd/leader.go rename to rbmd/leader.go diff --git a/src/rbmd/metrics.go b/rbmd/metrics.go similarity index 100% rename from src/rbmd/metrics.go rename to rbmd/metrics.go diff --git a/src/rbmd/requests.go b/rbmd/requests.go similarity index 100% rename from src/rbmd/requests.go rename to rbmd/requests.go diff --git a/src/rbmd/state.go b/rbmd/state.go similarity index 100% rename from src/rbmd/state.go rename to rbmd/state.go diff --git a/src/rbmd/sys.go b/rbmd/sys.go similarity index 100% rename from src/rbmd/sys.go rename to rbmd/sys.go diff --git a/src/rbmd/version.go b/rbmd/version.go similarity index 100% rename from src/rbmd/version.go rename to rbmd/version.go diff --git a/src/rbmd/zoo.go b/rbmd/zoo.go similarity index 100% rename from src/rbmd/zoo.go rename to rbmd/zoo.go