Updated README

This commit is contained in:
yhirose 2020-02-01 09:24:42 -05:00
parent ac7742bb32
commit 1a2a6e2b01

View File

@ -65,6 +65,9 @@ ret = svr.set_mount_point("/public", "./www2"); // 2nd order to search
// Remove mount /
ret = svr.remove_mount_point("/");
// Remove mount /public
ret = svr.remove_mount_point("/public");
```
```cpp