Skip to content

Commit d367f87

Browse files
committed
chore: add copyright headers to all source files
Copyright (c) 2026 Volkov Pavel | DevITWay SPDX-License-Identifier: MIT
1 parent ca9c36e commit d367f87

39 files changed

+115
-1
lines changed

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2026 DevITWay
3+
Copyright (c) 2026 Volkov Pavel | DevITWay
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

nora-cli/src/main.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
// Copyright (c) 2026 Volkov Pavel | DevITWay
2+
// SPDX-License-Identifier: MIT
3+
14
use clap::{Parser, Subcommand};
25

36
#[derive(Parser)]

nora-registry/src/activity_log.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
// Copyright (c) 2026 Volkov Pavel | DevITWay
2+
// SPDX-License-Identifier: MIT
3+
14
use chrono::{DateTime, Utc};
25
use parking_lot::RwLock;
36
use serde::Serialize;

nora-registry/src/auth.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
// Copyright (c) 2026 Volkov Pavel | DevITWay
2+
// SPDX-License-Identifier: MIT
3+
14
use axum::{
25
body::Body,
36
extract::State,

nora-registry/src/backup.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
// Copyright (c) 2026 Volkov Pavel | DevITWay
2+
// SPDX-License-Identifier: MIT
3+
14
//! Backup and restore functionality for Nora
25
//!
36
//! Exports all artifacts to a tar.gz file and restores from backups.

nora-registry/src/config.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
// Copyright (c) 2026 Volkov Pavel | DevITWay
2+
// SPDX-License-Identifier: MIT
3+
14
use serde::{Deserialize, Serialize};
25
use std::env;
36
use std::fs;

nora-registry/src/dashboard_metrics.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
// Copyright (c) 2026 Volkov Pavel | DevITWay
2+
// SPDX-License-Identifier: MIT
3+
14
use std::sync::atomic::{AtomicU64, Ordering};
25
use std::time::Instant;
36

nora-registry/src/error.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
// Copyright (c) 2026 Volkov Pavel | DevITWay
2+
// SPDX-License-Identifier: MIT
3+
14
#![allow(dead_code)]
25
//! Application error handling with HTTP response conversion
36
//!

nora-registry/src/health.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
// Copyright (c) 2026 Volkov Pavel | DevITWay
2+
// SPDX-License-Identifier: MIT
3+
14
use axum::{extract::State, http::StatusCode, response::Json, routing::get, Router};
25
use serde::Serialize;
36
use std::sync::Arc;

nora-registry/src/main.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
// Copyright (c) 2026 Volkov Pavel | DevITWay
2+
// SPDX-License-Identifier: MIT
3+
14
mod activity_log;
25
mod auth;
36
mod backup;

0 commit comments

Comments
 (0)