sourceafFandocViewer::InternetScheme.fan


** Registers the 'http://', 'https://' and 'ftp://' schemes to be viewed in the `Browser`.
** 
** The InternetScheme resolves to a flux `InternetResource`. (Couldn't think of any reason to resolve it to 
** an intermediate object.)
const class InternetScheme : UriScheme {
    override Obj? get(Uri uri, Obj? base) {
        return InternetResource(uri)
    }
}