mirror of https://github.com/sipwise/ngcp-csc.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
568 B
21 lines
568 B
/*
|
|
* This file is responsible for launching the application. Application logic should be
|
|
* placed in the NgcpCsc.Application class.
|
|
*/
|
|
Ext.application({
|
|
name: 'NgcpCsc',
|
|
|
|
extend: 'NgcpCsc.Application',
|
|
|
|
// Simply require all classes in the application. This is sufficient to ensure
|
|
// that all NgcpCsc classes will be included in the application build. If classes
|
|
// have specific requirements on each other, you may need to still require them
|
|
// explicitly.
|
|
//
|
|
requires: [
|
|
'NgcpCsc.*',
|
|
'Ext.window.Toast'
|
|
]
|
|
|
|
});
|