mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-13 11:34:26 +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{}
|
||
|
}
|