Added URN and wiki

This commit is contained in:
TheJoKlLa 2021-10-12 22:31:19 +00:00
parent 1441b59145
commit c3b72e01e1
2 changed files with 3 additions and 0 deletions

View File

@ -36,6 +36,8 @@ struct Machine {
description @3 :Text;
state @4 :MachineState;
manager @5:User;
wiki @13 :Text;
urn @14 :Text;
info @6 :Info;
interface Info $CSharp.name("InfoInterface") {

View File

@ -16,5 +16,6 @@ interface MachineSystem
getMachineList @0 () -> ( machine_list :List(Machine) );
getMachine @1 ( name :Text ) -> ( machine :Machine, dummy :UInt8 = 0 );
getMachineURN @2 ( urn :Text ) -> ( machine :Machine, dummy :UInt8 = 0 );
}
}