15 lines
297 B
Go
15 lines
297 B
Go
// +build !consulent
|
|
|
|
package state
|
|
|
|
import (
|
|
memdb "github.com/hashicorp/go-memdb"
|
|
|
|
"github.com/hashicorp/consul/agent/structs"
|
|
)
|
|
|
|
func intentionListTxn(tx ReadTxn, _ *structs.EnterpriseMeta) (memdb.ResultIterator, error) {
|
|
// Get all intentions
|
|
return tx.Get(tableConnectIntentions, "id")
|
|
}
|