From ac2058be59cc4483c0db64eb7044ec5b1007ef03 Mon Sep 17 00:00:00 2001 From: thosakwe Date: Wed, 23 Nov 2016 12:23:17 -0500 Subject: [PATCH] readme --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index f7b4f14a..9618bb21 100644 --- a/README.md +++ b/README.md @@ -27,8 +27,9 @@ main() async { final app = new Angel(); app.mount('/virtual', new VirtualDirectory( - source: new Directory('./public'), + source: new Directory('./foo/bar'), publicPath: '/virtual')); + app.mount('/', new VirtualDirectory(source: new Directory('./public'))); await app.startServer();