<?php

namespace SPC\Modules;

interface Module_Interface {
	/**
	 * Initialize the module.
	 *
	 * @return void
	 */
	public function init();
}
