19 lines
186 B
Python
19 lines
186 B
Python
|
# -*- coding: utf-8 -*-
|
||
|
import sys
|
||
|
|
||
|
|
||
|
def module_pre_init_hook(env):
|
||
|
|
||
|
pass
|
||
|
|
||
|
|
||
|
def module_post_init_hook(env):
|
||
|
|
||
|
pass
|
||
|
|
||
|
def module_uninstall_hook(env):
|
||
|
|
||
|
pass
|
||
|
|
||
|
|