From 238f4633c69f7b4f638f793972277bf40397e515 Mon Sep 17 00:00:00 2001 From: Evan Simkowitz Date: Wed, 17 Jul 2024 19:46:17 -0700 Subject: [PATCH] update license blurbs --- frontend/util/endpoints.ts | 3 +++ frontend/util/getenv.ts | 3 +++ frontend/util/isdev.ts | 3 +++ 3 files changed, 9 insertions(+) diff --git a/frontend/util/endpoints.ts b/frontend/util/endpoints.ts index 5f5858fc..bb0c3b99 100644 --- a/frontend/util/endpoints.ts +++ b/frontend/util/endpoints.ts @@ -1,3 +1,6 @@ +// Copyright 2024, Command Line Inc. +// SPDX-License-Identifier: Apache-2.0 + import { getEnv } from "./getenv"; import { lazy } from "./util"; diff --git a/frontend/util/getenv.ts b/frontend/util/getenv.ts index 37487169..ef590493 100644 --- a/frontend/util/getenv.ts +++ b/frontend/util/getenv.ts @@ -1,3 +1,6 @@ +// Copyright 2024, Command Line Inc. +// SPDX-License-Identifier: Apache-2.0 + import { getApi } from "@/app/store/global"; function getWindow(): Window { diff --git a/frontend/util/isdev.ts b/frontend/util/isdev.ts index 8482f694..02963239 100644 --- a/frontend/util/isdev.ts +++ b/frontend/util/isdev.ts @@ -1,3 +1,6 @@ +// Copyright 2024, Command Line Inc. +// SPDX-License-Identifier: Apache-2.0 + import { getEnv } from "./getenv"; import { lazy } from "./util";