1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00

Add appPublishDateInjectable

Signed-off-by: Alex Andreev <alex.andreev.email@gmail.com>
This commit is contained in:
Alex Andreev 2022-05-25 14:39:59 +03:00
parent 1ffe3144cc
commit c044d6d2c2

View File

@ -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;