mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-14 03:54:21 +00:00
10 lines
203 B
Go
10 lines
203 B
Go
|
//go:build !integration
|
||
|
|
||
|
package sink
|
||
|
|
||
|
// StartServer and its returned close function are a no-op
|
||
|
// when the `integration` build tag is disabled.
|
||
|
func StartServer() (close func()) {
|
||
|
return func() {}
|
||
|
}
|