1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-06-26 09:25:23 +00:00

apply coding style

This commit is contained in:
Shelikhoo 2021-05-04 11:21:49 +01:00
parent 6a96a9f89e
commit 19d1ff9003
No known key found for this signature in database
GPG Key ID: C4D5E79D22B25316
4 changed files with 14 additions and 13 deletions

View File

@ -1,11 +1,12 @@
package memconservative
import (
"io/ioutil"
"strings"
"github.com/golang/protobuf/proto"
"github.com/v2fly/v2ray-core/v4/app/router"
"github.com/v2fly/v2ray-core/v4/common/platform"
"io/ioutil"
"strings"
)
type GeoIPCache map[string]*router.GeoIP

View File

@ -2,10 +2,11 @@ package memconservative
import (
"errors"
"github.com/v2fly/v2ray-core/v4/common/platform/filesystem"
"google.golang.org/protobuf/encoding/protowire"
"io"
"strings"
"github.com/v2fly/v2ray-core/v4/common/platform/filesystem"
"google.golang.org/protobuf/encoding/protowire"
)
var (
@ -84,7 +85,6 @@ Loop:
result = container
break Loop
}
}
return result, nil
}

View File

@ -2,14 +2,15 @@ package memconservative
import (
"errors"
"github.com/google/go-cmp/cmp"
"github.com/v2fly/v2ray-core/v4/common"
"github.com/v2fly/v2ray-core/v4/common/platform"
"github.com/v2fly/v2ray-core/v4/common/platform/filesystem"
"io/fs"
"os"
"path/filepath"
"testing"
"github.com/google/go-cmp/cmp"
"github.com/v2fly/v2ray-core/v4/common"
"github.com/v2fly/v2ray-core/v4/common/platform"
"github.com/v2fly/v2ray-core/v4/common/platform/filesystem"
)
const (

View File

@ -1,9 +1,10 @@
package memconservative
import (
"runtime"
"github.com/v2fly/v2ray-core/v4/app/router"
"github.com/v2fly/v2ray-core/v4/infra/conf/geodata"
"runtime"
)
//go:generate go run github.com/v2fly/v2ray-core/v4/common/errors/errorgen
@ -36,7 +37,5 @@ func newMemConservativeLoader() geodata.LoaderImplementation {
}
func init() {
geodata.RegisterGeoDataLoaderImplementationCreator("memconservative", func() geodata.LoaderImplementation {
return newMemConservativeLoader()
})
geodata.RegisterGeoDataLoaderImplementationCreator("memconservative", newMemConservativeLoader)
}