mirror of
https://github.com/avatao-content/baseimage-tutorial-framework
synced 2024-11-05 23:01:20 +00:00
20 lines
416 B
Python
20 lines
416 B
Python
# Copyright (C) 2018 Avatao.com Innovative Learning Kft.
|
|
# All Rights Reserved. See LICENSE file for details.
|
|
|
|
from watchdog.observers import Observer
|
|
|
|
from tfw.decorators import lazy_property
|
|
|
|
|
|
class ObserverMixin:
|
|
@lazy_property
|
|
def observer(self):
|
|
return Observer()
|
|
|
|
def watch(self):
|
|
self.observer.start()
|
|
|
|
def stop(self):
|
|
self.observer.stop()
|
|
self.observer.join()
|