diff --git a/source/dante/client.d b/source/dante/client.d index b265a79..c28caf3 100644 --- a/source/dante/client.d +++ b/source/dante/client.d @@ -78,6 +78,12 @@ public class DanteClient manager.start(); version(dbg) { writeln("Dante staretd tristanable manager..."); } } + + public void nopRequest() + { + import dante.types.nop; + engine.makeRequest(new NopRequest()); + } } unittest diff --git a/source/dante/types/nop.d b/source/dante/types/nop.d new file mode 100644 index 0000000..ae5e5ad --- /dev/null +++ b/source/dante/types/nop.d @@ -0,0 +1,11 @@ +module dante.types.nop; + +import tasky : Request; + +public class NopRequest : Request +{ + this() + { + super(cast(byte[])"ABBA"); + } +} \ No newline at end of file