summaryrefslogtreecommitdiff
path: root/run.p6
diff options
context:
space:
mode:
Diffstat (limited to 'run.p6')
-rw-r--r--run.p613
1 files changed, 13 insertions, 0 deletions
diff --git a/run.p6 b/run.p6
new file mode 100644
index 0000000..a041423
--- /dev/null
+++ b/run.p6
@@ -0,0 +1,13 @@
+#!perl6
+use WebCoso;
+
+my $wc = WebCoso.new(
+ srcdir => '/tmp/src',
+ destdir => '/tmp/dest',
+);
+
+
+$wc.new-doc(dir => $_) for «one one/two three/four»;
+$wc.new-feed(dir => $_) for «tags/one tags/two»;
+
+$wc.run;