Services
An overview of Services
Make a New Service
$ asml make service myservice[project]
name = "my-amazing-project"
[services]
default = { name = "myservice" }The Service Manifest
# Each service must have a service table
[service]
name = "service-name" # A name is required
# The API table contains functions and authorizers
[api.functions.function-id]
name = "function-name" # A name is required
[api.authorizers.authorizer-id]
auth_type = "type"
# The IOmod table defines service dependencies
[iomod.dependencies.dependency-id]
version = "x.x.x"
coordinates = "organization.namespace.name"Last updated