10 lines
332 B
TypeScript
10 lines
332 B
TypeScript
|
import SessionFactory from './SessionFactory.ts'
|
||
|
import MemorySession from './MemorySession.ts'
|
||
|
import SessionInterface from './SessionInterface.ts'
|
||
|
|
||
|
export default class MemorySessionFactory extends SessionFactory {
|
||
|
produce(dependencies: any[], parameters: any[]): SessionInterface {
|
||
|
return new MemorySession()
|
||
|
}
|
||
|
}
|