mirror of
https://github.com/zitadel/zitadel.git
synced 2025-12-05 08:22:04 +00:00
12 lines
129 B
Go
12 lines
129 B
Go
|
|
//go:build !integration
|
||
|
|
|
||
|
|
package start
|
||
|
|
|
||
|
|
import (
|
||
|
|
"net"
|
||
|
|
)
|
||
|
|
|
||
|
|
func listenConfig() *net.ListenConfig {
|
||
|
|
return &net.ListenConfig{}
|
||
|
|
}
|