generated from coldbox-modules/module-template
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ModuleConfig.cfc
46 lines (38 loc) · 885 Bytes
/
ModuleConfig.cfc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
/**
* Copyright Since 2005 ColdBox Framework by Luis Majano and Ortus Solutions, Corp
* www.ortussolutions.com
* ---
*/
component {
// Module Properties
this.title = "ipify";
this.author = "Ortus Solutions";
this.webURL = "https://www.ortussolutions.com";
this.description = " A Simple Public IP Address API Module based on www.ipify.org";
this.version = "@build.version@[email protected]@";
// Model Namespace
this.modelNamespace = "ipify";
// CF Mapping
this.cfmapping = "ipify";
// Dependencies
this.dependencies = [];
// Helpers
this.applicationHelper = [ "helpers/mixins.cfm" ];
/**
* Configure Module
*/
function configure(){
settings = {
};
}
/**
* Fired when the module is registered and activated.
*/
function onLoad(){
}
/**
* Fired when the module is unregistered and unloaded
*/
function onUnload(){
}
}