-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.zig
41 lines (28 loc) · 1.05 KB
/
config.zig
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
35
36
37
38
39
40
41
/// Name of the allocator identifier
pub const alloc_param = "allocator";
/// Name of the stack allocator identifier
pub const scratch_alloc = "scratch_alloc";
/// Service client type name
pub const service_client_type = "Client";
/// Service client filename
pub const service_client_filename = "client.zig";
/// Runtime public scope
pub const runtime_scope = "smithy";
/// Endpoint scope constant
pub const endpoint_scope = "srvc_endpoint";
/// Endpoint scope filename
pub const endpoint_filename = "endpoint.zig";
/// Endpoint configuration type name
pub const endpoint_config_type = "EndpointConfig";
/// Endpoint resolve function identifier
pub const endpoint_resolve_fn = "resolve";
/// Named types scope constant
pub const types_scope = "srvc_types";
/// Named types scope filename
pub const types_filename = "data_types.zig";
/// Named schemas scope constant
pub const schemas_scope = "srvc_schemas";
/// Named schemas scope filename
pub const schemas_filename = "data_schemas.zig";
/// Operations directory name
pub const dir_operations = "operation";