From 9162ac6d910e164c9f4585862acbab470a9781e8 Mon Sep 17 00:00:00 2001 From: Owen Date: Tue, 31 Mar 2026 14:07:28 -0700 Subject: [PATCH] Add missing headers --- .../routers/newt/handleConnectionLogMessage.ts | 13 +++++++++++++ server/private/routers/newt/index.ts | 13 +++++++++++++ 2 files changed, 26 insertions(+) diff --git a/server/private/routers/newt/handleConnectionLogMessage.ts b/server/private/routers/newt/handleConnectionLogMessage.ts index 00fb5dada..e980f85c9 100644 --- a/server/private/routers/newt/handleConnectionLogMessage.ts +++ b/server/private/routers/newt/handleConnectionLogMessage.ts @@ -1,3 +1,16 @@ +/* + * This file is part of a proprietary work. + * + * Copyright (c) 2025 Fossorial, Inc. + * All rights reserved. + * + * This file is licensed under the Fossorial Commercial License. + * You may not use this file except in compliance with the License. + * Unauthorized use, copying, modification, or distribution is strictly prohibited. + * + * This file is not licensed under the AGPLv3. + */ + import { db } from "@server/db"; import { MessageHandler } from "@server/routers/ws"; import { sites, Newt, clients, orgs } from "@server/db"; diff --git a/server/private/routers/newt/index.ts b/server/private/routers/newt/index.ts index cc182cf7d..256d19cb7 100644 --- a/server/private/routers/newt/index.ts +++ b/server/private/routers/newt/index.ts @@ -1 +1,14 @@ +/* + * This file is part of a proprietary work. + * + * Copyright (c) 2025 Fossorial, Inc. + * All rights reserved. + * + * This file is licensed under the Fossorial Commercial License. + * You may not use this file except in compliance with the License. + * Unauthorized use, copying, modification, or distribution is strictly prohibited. + * + * This file is not licensed under the AGPLv3. + */ + export * from "./handleConnectionLogMessage";