├── .env ├── .gitignore ├── LICENSE ├── README.md ├── imports ├── deps.json └── path.ts └── mod.ts /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crewdevio/dino_env/HEAD/.env -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .vscode/ -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crewdevio/dino_env/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crewdevio/dino_env/HEAD/README.md -------------------------------------------------------------------------------- /imports/deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crewdevio/dino_env/HEAD/imports/deps.json -------------------------------------------------------------------------------- /imports/path.ts: -------------------------------------------------------------------------------- 1 | export * from "https://deno.land/std/path/mod.ts"; -------------------------------------------------------------------------------- /mod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crewdevio/dino_env/HEAD/mod.ts --------------------------------------------------------------------------------