mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2025-12-20 14:29:24 +08:00
11 lines
152 B
Go
11 lines
152 B
Go
package app
|
|
|
|
import (
|
|
"github.com/1Panel-dev/1Panel/agent/utils/docker"
|
|
)
|
|
|
|
func Init() {
|
|
go func() {
|
|
_ = docker.CreateDefaultDockerNetwork()
|
|
}()
|
|
}
|