Http Kernel!

This commit is contained in:
garrettmills
2020-07-22 09:38:17 -05:00
parent 60bb9afa29
commit b9f2f844f3
25 changed files with 402 additions and 43 deletions

View File

@@ -1,5 +1,6 @@
import { Service } from '../../../../di/src/decorator/Service.ts'
import { Logging } from '../logging/Logging.ts'
import {uuid} from '../../external/std.ts'
@Service()
export default class Utility {
@@ -52,4 +53,8 @@ export default class Utility {
return false
}
}
uuid(): string {
return uuid()
}
}