This repository has been archived on 2022-11-20. You can view files and clone it, but cannot push or open issues or pull requests.
2022-11-11 09:54:25 +00:00
|
|
|
module observer.request.observer;
|
2022-11-11 00:03:18 +00:00
|
|
|
|
|
|
|
interface Observer
|
|
|
|
{
|
2022-11-11 07:56:59 +00:00
|
|
|
void update();
|
2022-11-11 00:03:18 +00:00
|
|
|
}
|