-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.es6
27 lines (25 loc) · 995 Bytes
/
index.es6
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
import {ModuleContainer} from './lib/core/ModuleContainer'
import {Get, Post} from './lib/decorators/httpMethods'
import {SocketListener} from './lib/decorators/sockets'
import {Interface, Implements, Inject, PostInject, Scope} from './lib/decorators/dependencyManagement'
import {Controller} from './lib/decorators/controller'
import {Service} from './lib/decorators/service'
import {Mock, TestClass, Test, Before, InjectMocks} from './lib/decorators/testing'
import ExpressApp from './lib/middlewares/ExpressApp'
exports.ModuleContainer = ModuleContainer
exports.Get = Get
exports.Post = Post
exports.SocketListener = SocketListener
exports.Interface = Interface
exports.Implements = Implements
exports.Scope = Scope
exports.Inject = Inject
exports.Controller = Controller
exports.Service = Service
exports.Mock = Mock
exports.Test = Test
exports.Before = Before
exports.InjectMocks = InjectMocks
exports.TestClass = TestClass
exports.PostInject = PostInject
exports.ExpressApp = ExpressApp