copy_dir
import { copy_dir } from "https://raw.githubusercontent.com/olaven/dio/master/mod.ts";Copies a the content of the options.source into
options.destination.
options.destination is created if it
does not exist.
async function copy_dir(options: {
source: string;
destination: string;
});