This repository has been archived by the owner on Aug 26, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 22
/
codegen-go.toml
34 lines (32 loc) · 1.65 KB
/
codegen-go.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# codegen-go.toml
[[models]]
path = "."
files = [
"core/wasmcloud-core.smithy",
"core/wasmcloud-model.smithy",
"blobstore/blobstore.smithy",
"factorial/factorial.smithy",
"keyvalue/keyvalue.smithy",
"httpclient/httpclient.smithy",
"httpserver/httpserver.smithy",
"logging/logging.smithy",
"messaging/messaging.smithy",
"numbergen/numbergen.smithy",
"sqldb/sqldb.smithy",
]
[tinygo]
output_dir = ""
formatter = [ "goimports", "-w" ]
files = [
{ path = "core/tinygo/core.go", package="actor", namespace = "org.wasmcloud.core" },
{ path = "core/tinygo/model.go", package="actor", namespace = "org.wasmcloud.model" },
{ path = "blobstore/tinygo/blobstore.go", package="blobstore", namespace = "org.wasmcloud.interface.blobstore" },
{ path = "factorial/tinygo/factorial.go", package="factorial", namespace = "org.wasmcloud.interface.factorial" },
{ path = "httpclient/tinygo/httpclient.go", package="httpclient", namespace = "org.wasmcloud.interface.httpclient" },
{ path = "httpserver/tinygo/httpserver.go", package="httpserver", namespace = "org.wasmcloud.interface.httpserver" },
{ path = "keyvalue/tinygo/keyvalue.go", package="keyvalue", namespace = "org.wasmcloud.interface.keyvalue" },
{ path = "logging/tinygo/logging.go", package="logging", namespace = "org.wasmcloud.interface.logging" },
{ path = "messaging/tinygo/messaging.go", package="messaging", namespace = "org.wasmcloud.interface.messaging" },
{ path = "numbergen/tinygo/numbergen.go", package="numbergen", namespace = "org.wasmcloud.interface.numbergen" },
{ path = "sqldb/tinygo/sqldb.go", package="sqldb", namespace = "org.wasmcloud.interface.sqldb" },
]