I6ID5SLSJN72LJYMVJ4LVS2EVTHB4A54PQLICZ34BZIQLACV6NJQC
OPGKOYLZ5CGHISV2EGC7QO5Y5MWUOOABPLTAG7PM64BMQRGSALRAC
UUNCAERSPFG56ZNDLR2AREKFB4EQDRKXNY2B43DXHDHJ5Y4GHCTQC
GFBTP7TIMBHKB34LL3HGQI32UQKPEI4Y2XUZ7RZUCXXSD3UABLCAC
fn unsupported(resource: &str) -> bool { let remote = [ "git://", "http://", "https://", "github.com", ]; for r in remote { if resource.starts_with(r) { return true; } } return false;}
fn unsupported(resource: &str) -> bool {
let remote = [
"git://",
"http://",
"https://",
"github.com",
];
for r in remote {
if resource.starts_with(r) {
return true;
}
return false;
if unsupported(&r) { continue; };
if unsupported(&r) {
continue;
};