Skip to content

Commit

Permalink
update go.mod
Browse files Browse the repository at this point in the history
  • Loading branch information
HobaiRiku committed Jun 7, 2020
1 parent e070d24 commit e4c4ec5
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module wsl2-auto-portproxy
module github.com/HobaiRiku/wsl2-auto-portproxy

go 1.14

Expand Down
2 changes: 1 addition & 1 deletion lib/config/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ package config
import (
"encoding/json"
"fmt"
"github.com/HobaiRiku/wsl2-auto-portproxy/lib/util"
"github.com/pkg/errors"
"io/ioutil"
"log"
Expand All @@ -11,7 +12,6 @@ import (
"regexp"
"strconv"
"strings"
"wsl2-auto-portproxy/lib/util"
)

type Config struct {
Expand Down
4 changes: 2 additions & 2 deletions lib/storage/global.go
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package storage

import (
"wsl2-auto-portproxy/lib/config"
"wsl2-auto-portproxy/lib/proxy"
"github.com/HobaiRiku/wsl2-auto-portproxy/lib/config"
"github.com/HobaiRiku/wsl2-auto-portproxy/lib/proxy"
)

var ProxyPool []proxy.Proxy
Expand Down
8 changes: 4 additions & 4 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@ package main
import (
"flag"
"fmt"
"github.com/HobaiRiku/wsl2-auto-portproxy/lib/config"
"github.com/HobaiRiku/wsl2-auto-portproxy/lib/proxy"
"github.com/HobaiRiku/wsl2-auto-portproxy/lib/service"
"github.com/HobaiRiku/wsl2-auto-portproxy/lib/storage"
"log"
"os"
"time"
"wsl2-auto-portproxy/lib/config"
"wsl2-auto-portproxy/lib/proxy"
"wsl2-auto-portproxy/lib/service"
"wsl2-auto-portproxy/lib/storage"
)

var version string
Expand Down

0 comments on commit e4c4ec5

Please sign in to comment.