Skip to content

Commit

Permalink
copyright headers for Rust files
Browse files Browse the repository at this point in the history
  • Loading branch information
asimihsan committed Dec 5, 2021
1 parent cb46d46 commit 1872430
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 19 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
.vscode
*.code-workspace
.DS_Store
pkg/*
Expand Down
18 changes: 0 additions & 18 deletions copyright-headers.sh

This file was deleted.

5 changes: 5 additions & 0 deletions src/cli/src/main.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
/*
* Copyright Kitten Cat LLC. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/

use chrono::prelude::*;
use chrono::Duration;

Expand Down
5 changes: 5 additions & 0 deletions src/cwl-lib/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
/*
* Copyright Kitten Cat LLC. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/

#[macro_use]
extern crate derivative;

Expand Down
7 changes: 6 additions & 1 deletion src/fuse/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
#[macro_use]
/*
* Copyright Kitten Cat LLC. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/

#[macro_use]
extern crate derivative;

use std::collections::BTreeMap;
Expand Down

0 comments on commit 1872430

Please sign in to comment.