crud and http controller
This commit is contained in:
parent
cba12be4b1
commit
c27c061c15
51 changed files with 930 additions and 387 deletions
15
server/src/core/controllers/socket_controller.ts
Normal file
15
server/src/core/controllers/socket_controller.ts
Normal file
|
@ -0,0 +1,15 @@
|
|||
import path from "path";
|
||||
import { TypedEvent } from "../helper/typed_event";
|
||||
import { StackService } from "../services/stack_service";
|
||||
// TODO(IDONTSUDO): up to do
|
||||
|
||||
class SocketController<T>{
|
||||
emitter:TypedEvent<T>;
|
||||
constructor(emitter:TypedEvent<T>, ){
|
||||
this.emitter = emitter
|
||||
}
|
||||
call = () =>{
|
||||
|
||||
}
|
||||
}
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue