// SPDX-License-Identifier: MIT
package greentic:interfaces-provider@0.1.0;
use greentic:interfaces-types/types@0.1.0;
interface provider {
use greentic:interfaces-types/types@0.1.0.{allow-list, network-policy};
/// Provider metadata returned by components.
record provider-meta {
name: string,
version: string,
capabilities: list<string>,
allow-list: allow-list,
network-policy: network-policy,
}
}