feat: update deno libries
This commit is contained in:
@@ -3,7 +3,23 @@
|
||||
const PYTHON_CONFIG_FILE = "~/.config/python-config.json";
|
||||
|
||||
interface PythonConfig {
|
||||
// TODO
|
||||
default_version?: string;
|
||||
default_profile?: string;
|
||||
python_venv_base_path?: string;
|
||||
versions: Map<string, PythonVersion>;
|
||||
profiles?: Map<string, PythonVenv>;
|
||||
}
|
||||
|
||||
interface PythonVersion {
|
||||
version: string;
|
||||
path: string;
|
||||
comment?: string;
|
||||
}
|
||||
|
||||
interface PythonVenv {
|
||||
version: string;
|
||||
path: string;
|
||||
comment?: string;
|
||||
}
|
||||
|
||||
async function main() {
|
||||
|
||||
Reference in New Issue
Block a user