diff --git a/sources/monk_edn.py b/sources/monk_edn.py new file mode 100755 index 0000000..2d1619a --- /dev/null +++ b/sources/monk_edn.py @@ -0,0 +1,21 @@ +#!/usr/bin/python +import monkModule as module +import monkTools as tools +import monkDebug as debug +import datetime + + +def get_desc(): + return "EDN application N'ours editor (Editeur De N'ours)" + +def create(): + # module name is 'edn' and type binary. + myModule = module.Module(__file__, 'edn', 'APPLICATION') + # enable doculentation : + myModule.set_website("http://heeroyui.github.io/edn/") + myModule.set_path(tools.get_current_path(__file__) + "/appl/") + + # add the currrent module at the + return myModule + +