Skip to content
Snippets Groups Projects
task.fbs 143 B
Newer Older
  • Learn to ignore specific revisions
  • namespace task;
    
    table Query {
    	attr:string;
    	uids:[ulong];
    }
    
    table Value {
    	val:[ubyte];
    }
    
    table Result {
    	uids:[ulong];
    	values:[Value];
    }