mirror of https://github.com/status-im/consul.git
15 lines
242 B
Go
15 lines
242 B
Go
|
// Copyright (c) HashiCorp, Inc.
|
||
|
// SPDX-License-Identifier: BUSL-1.1
|
||
|
|
||
|
//go:build !consulent
|
||
|
|
||
|
package sprawl
|
||
|
|
||
|
func (s *Sprawl) initNetworkAreas() error {
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
func (s *Sprawl) waitForNetworkAreaEstablishment() error {
|
||
|
return nil
|
||
|
}
|