mirror of
https://github.com/yggdrasil-network/yggdrasil-go.git
synced 2024-11-23 18:15:24 +00:00
Run goimports
This commit is contained in:
parent
90f9be38c5
commit
41d890bb64
@ -1,3 +1,4 @@
|
|||||||
|
//go:build android
|
||||||
// +build android
|
// +build android
|
||||||
|
|
||||||
package mobile
|
package mobile
|
||||||
|
@ -1,3 +1,4 @@
|
|||||||
|
//go:build ios
|
||||||
// +build ios
|
// +build ios
|
||||||
|
|
||||||
package mobile
|
package mobile
|
||||||
|
@ -1,3 +1,4 @@
|
|||||||
|
//go:build !android && !ios
|
||||||
// +build !android,!ios
|
// +build !android,!ios
|
||||||
|
|
||||||
package mobile
|
package mobile
|
||||||
|
@ -3,14 +3,16 @@
|
|||||||
|
|
||||||
package core
|
package core
|
||||||
|
|
||||||
import "fmt"
|
import (
|
||||||
|
"fmt"
|
||||||
|
|
||||||
import _ "net/http/pprof"
|
"net/http"
|
||||||
import "net/http"
|
_ "net/http/pprof"
|
||||||
import "runtime"
|
"os"
|
||||||
import "os"
|
"runtime"
|
||||||
|
|
||||||
import "github.com/gologme/log"
|
"github.com/gologme/log"
|
||||||
|
)
|
||||||
|
|
||||||
// Start the profiler in debug builds, if the required environment variable is set.
|
// Start the profiler in debug builds, if the required environment variable is set.
|
||||||
func init() {
|
func init() {
|
||||||
|
@ -3,8 +3,11 @@
|
|||||||
|
|
||||||
package multicast
|
package multicast
|
||||||
|
|
||||||
import "syscall"
|
import (
|
||||||
import "golang.org/x/sys/unix"
|
"syscall"
|
||||||
|
|
||||||
|
"golang.org/x/sys/unix"
|
||||||
|
)
|
||||||
|
|
||||||
func (m *Multicast) _multicastStarted() {
|
func (m *Multicast) _multicastStarted() {
|
||||||
|
|
||||||
|
@ -3,8 +3,11 @@
|
|||||||
|
|
||||||
package multicast
|
package multicast
|
||||||
|
|
||||||
import "syscall"
|
import (
|
||||||
import "golang.org/x/sys/windows"
|
"syscall"
|
||||||
|
|
||||||
|
"golang.org/x/sys/windows"
|
||||||
|
)
|
||||||
|
|
||||||
func (m *Multicast) _multicastStarted() {
|
func (m *Multicast) _multicastStarted() {
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user