from core.hakkuframework import *

conf = {
#	"name": "module_name", # Module's name (should be same as the file name)
	"version": "1.0", # Module version
	"shortdesc": "none", # Short description
	"github": "none", # Author's github
	"author": "none", # Author
	"email": "none", # Email
#	"initdate": "xxxx-xx-xx", # Initial date
#	"lastmod": "xxxx-xx-xx", # Last modification
	"apisupport": False, # Api support
	"needroot": 1, # Alert user if root permissions not available (remove variable below if root permissions are not needed)
	"dependencies": [None] # Remove this if your module doesn't have any external dependencies
}

# List of the variables
variables = OrderedDict((
	("option1", ["none1", "description1"]),
	("option2", ["none2", "description2"]),
))

# Additional help notes
help_notes = "help notes"

# Additional notes to options
option_notes = "option note"

# Custom commands (remove this if you will not use custom commands)
customcommands = {
	"example": "example command"
}

# Simple changelog
changelog = "Version 1.0:\nrelease"

# Run function
def run():
	print(variables)
	print_info("you have successfully created module")

# Just example of custom command "example" (remove this function below)
def example(args):
	print(args)
