- Added `Result` which is what a `Promise` returns when done executing
This commit is contained in:
Tristan B. Velloza Kildaire 2023-03-03 17:31:14 +02:00
parent 7d17b82c03
commit 79ba136e87
1 changed files with 12 additions and 0 deletions

12
source/eventy/result.d Normal file
View File

@ -0,0 +1,12 @@
module eventy.result;
/**
* Result
*
* A result is the, well, result of a task
* (upon its completion)
*/
public class Result
{
}