mirror of
https://github.com/kiviktnm/decman.git
synced 2026-09-19 20:18:28 +00:00
11 lines
175 B
Python
11 lines
175 B
Python
import os
|
|
|
|
import decman
|
|
|
|
|
|
class Example(decman.Plugin):
|
|
NAME = "example"
|
|
|
|
def available(self) -> bool:
|
|
return os.path.exists("/tmp/example_plugin_available")
|