Initial boilerplate scaffold for continuum-schemas
Protobuf data model (Template/PrintJob/MaterialProfile/PrintParameters) with codegen targets for TypeBox+TS types (packages/ts-types) and prost-derived Rust structs (packages/rust-types). Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
syntax = "proto3";
|
||||
|
||||
package continuum.v1;
|
||||
|
||||
message MaterialProfile {
|
||||
string id = 1;
|
||||
string name = 2;
|
||||
string filament_type = 3;
|
||||
double nozzle_temp_c = 4;
|
||||
double bed_temp_c = 5;
|
||||
double density_g_cm3 = 6;
|
||||
string color_hex = 7;
|
||||
}
|
||||
Reference in New Issue
Block a user