From c044d6d2c20d37e4b58609d22ba1a44a4b284ce8 Mon Sep 17 00:00:00 2001 From: Alex Andreev Date: Wed, 25 May 2022 14:39:59 +0300 Subject: [PATCH] Add appPublishDateInjectable Signed-off-by: Alex Andreev --- .../app-publish-date.injectable.ts | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 src/renderer/app-update-warning/app-publish-date.injectable.ts diff --git a/src/renderer/app-update-warning/app-publish-date.injectable.ts b/src/renderer/app-update-warning/app-publish-date.injectable.ts new file mode 100644 index 0000000000..07fd3fccae --- /dev/null +++ b/src/renderer/app-update-warning/app-publish-date.injectable.ts @@ -0,0 +1,16 @@ +/** + * Copyright (c) OpenLens Authors. All rights reserved. + * Licensed under MIT License. See LICENSE in root directory for more information. + */ + +import { getInjectable } from "@ogre-tools/injectable"; + +const appPublishDateInjectable = getInjectable({ + id: "app-publish-date", + + instantiate: () => { + return "Wed, 04 May 2022 02:35:00 +0300"; + }, +}); + +export default appPublishDateInjectable;