14 lines
185 B
Plaintext
14 lines
185 B
Plaintext
|
// Health Schema
|
||
|
namespace test::idl::health
|
||
|
|
||
|
struct Capabilities {
|
||
|
names: str[]
|
||
|
}
|
||
|
|
||
|
/// Health check an address
|
||
|
@provider=Any
|
||
|
protocol HealthCheck {
|
||
|
function alive() -> bool
|
||
|
}
|
||
|
|