(self)
| 19 | |
| 20 | @cached_property |
| 21 | def home_path(self) -> pathlib.Path: |
| 22 | home = pathlib.Path.home() / ".getsploit" |
| 23 | home.mkdir(parents=True, exist_ok=True) |
| 24 | return home |
| 25 | |
| 26 | @cached_property |
| 27 | def database_path(self) -> pathlib.Path: |
nothing calls this directly
no outgoing calls
no test coverage detected