mirror of
https://github.com/MingweiSamuel/Riven.git
synced 2025-01-15 05:17:27 -08:00
74eb5fa045
- `example/proxy` is new folder for `example_proxy`. - `riven` is new folder for the main riven lib. - Updated metadata to be an array and include HTTP method.
13 lines
No EOL
421 B
JavaScript
13 lines
No EOL
421 B
JavaScript
import { SCHEMES } from "./uri";
|
|
import http from "./schemes/http";
|
|
SCHEMES[http.scheme] = http;
|
|
import https from "./schemes/https";
|
|
SCHEMES[https.scheme] = https;
|
|
import mailto from "./schemes/mailto";
|
|
SCHEMES[mailto.scheme] = mailto;
|
|
import urn from "./schemes/urn";
|
|
SCHEMES[urn.scheme] = urn;
|
|
import uuid from "./schemes/urn-uuid";
|
|
SCHEMES[uuid.scheme] = uuid;
|
|
export * from "./uri";
|
|
//# sourceMappingURL=index.js.map
|