Import path contains github URL

This commit is contained in:
Naman Maheshwari 2020-07-08 16:59:07 +05:30
Родитель 1035c55b7c
Коммит 7ebe57639e
4 изменённых файлов: 5 добавлений и 5 удалений

Просмотреть файл

@ -9,8 +9,8 @@ import (
"strconv"
"strings"
"go-cidr-manager/ipv4cidr/consts"
"go-cidr-manager/ipv4cidr/utils"
"github.com/microsoft/go-cidr-manager/ipv4cidr/consts"
"github.com/microsoft/go-cidr-manager/ipv4cidr/utils"
)
// IPv4CIDR models an IPv4 CIDR range.

Просмотреть файл

@ -6,7 +6,7 @@ package ipv4cidr
import (
"testing"
"go-cidr-manager/ipv4cidr/consts"
"github.com/microsoft/go-cidr-manager/ipv4cidr/consts"
"github.com/stretchr/testify/assert"
)

Просмотреть файл

@ -9,7 +9,7 @@ import (
"strconv"
"strings"
"go-cidr-manager/ipv4cidr/consts"
"github.com/microsoft/go-cidr-manager/ipv4cidr/consts"
)
// GetNetmask takes the mask number as input and creates the netmask from it

Просмотреть файл

@ -6,7 +6,7 @@ package utils
import (
"testing"
"go-cidr-manager/ipv4cidr/consts"
"github.com/microsoft/go-cidr-manager/ipv4cidr/consts"
"github.com/stretchr/testify/assert"
)