greentic-interfaces 0.4.113

Greentic ABI: WIT contracts, generated bindings, thin mappers
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// 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,
  }
}