File tree Expand file tree Collapse file tree 10 files changed +10
-10
lines changed Expand file tree Collapse file tree 10 files changed +10
-10
lines changed Original file line number Diff line number Diff line change 99 "strings"
1010 "time"
1111
12- "github.com/matrix-org/complement/internal/ config"
12+ "github.com/matrix-org/complement/config"
1313 "github.com/matrix-org/complement/internal/docker"
1414 "github.com/sirupsen/logrus"
1515)
@@ -36,7 +36,7 @@ func (c *Config) DeriveComplementConfig(baseImageURI string) *config.Complement
3636
3737func Getenv (key string , default_value string ) string {
3838 value , exists := os .LookupEnv (key )
39- if ( exists ) {
39+ if exists {
4040 return value
4141 } else {
4242 return default_value
Original file line number Diff line number Diff line change 66 "io/ioutil"
77 "os"
88
9- "github.com/matrix-org/complement/internal/ config"
9+ "github.com/matrix-org/complement/config"
1010 "github.com/matrix-org/complement/internal/docker"
1111)
1212
File renamed without changes.
Original file line number Diff line number Diff line change @@ -30,8 +30,8 @@ import (
3030 "github.com/matrix-org/gomatrixserverlib"
3131 "github.com/matrix-org/util"
3232
33+ "github.com/matrix-org/complement/config"
3334 "github.com/matrix-org/complement/ct"
34- "github.com/matrix-org/complement/internal/config"
3535)
3636
3737// Subset of Deployment used in federation
Original file line number Diff line number Diff line change 66 "net/http"
77 "testing"
88
9- "github.com/matrix-org/complement/internal/ config"
9+ "github.com/matrix-org/complement/config"
1010)
1111
1212type fedDeploy struct {
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ import (
2828 "github.com/docker/go-connections/nat"
2929
3030 "github.com/matrix-org/complement/b"
31- "github.com/matrix-org/complement/internal/ config"
31+ "github.com/matrix-org/complement/config"
3232 "github.com/matrix-org/complement/internal/instruction"
3333)
3434
Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ import (
4040 "github.com/docker/docker/api/types/mount"
4141 "github.com/docker/docker/api/types/network"
4242
43- "github.com/matrix-org/complement/internal/ config"
43+ "github.com/matrix-org/complement/config"
4444)
4545
4646const (
Original file line number Diff line number Diff line change 88 "time"
99
1010 "github.com/matrix-org/complement/client"
11+ "github.com/matrix-org/complement/config"
1112 "github.com/matrix-org/complement/ct"
1213 "github.com/matrix-org/complement/helpers"
13- "github.com/matrix-org/complement/internal/config"
1414 "github.com/matrix-org/gomatrixserverlib"
1515)
1616
Original file line number Diff line number Diff line change 88
99 "github.com/gorilla/mux"
1010
11- "github.com/matrix-org/complement/internal/ config"
11+ "github.com/matrix-org/complement/config"
1212)
1313
1414type Server struct {
Original file line number Diff line number Diff line change @@ -11,9 +11,9 @@ import (
1111
1212 "github.com/matrix-org/complement/b"
1313 "github.com/matrix-org/complement/client"
14+ "github.com/matrix-org/complement/config"
1415 "github.com/matrix-org/complement/ct"
1516 "github.com/matrix-org/complement/helpers"
16- "github.com/matrix-org/complement/internal/config"
1717 "github.com/matrix-org/complement/internal/docker"
1818 "github.com/sirupsen/logrus"
1919)
You can’t perform that action at this time.
0 commit comments