os
This commit is contained in:
parent
4fac21da08
commit
521884102e
1 changed files with 11 additions and 0 deletions
11
rwx/os/__init__.py
Normal file
11
rwx/os/__init__.py
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
"""Control Operating Systems."""
|
||||||
|
|
||||||
|
from pathlib import Path
|
||||||
|
|
||||||
|
|
||||||
|
class OS:
|
||||||
|
"""Operating System."""
|
||||||
|
|
||||||
|
def __init__(self, path: str) -> None:
|
||||||
|
"""Set root."""
|
||||||
|
self.root = Path(path)
|
Loading…
Reference in a new issue