Skip to content

Commit e1cf295

Browse files
committed
Fix: LICENSE
1 parent 077f1dc commit e1cf295

File tree

2 files changed

+22
-3
lines changed

2 files changed

+22
-3
lines changed

LICENSE

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -671,5 +671,4 @@ into proprietary programs. If your program is a subroutine library, you
671671
may consider it more useful to permit linking proprietary applications with
672672
the library. If this is what you want to do, use the GNU Lesser General
673673
Public License instead of this License. But first, please read
674-
<https://www.gnu.org/licenses/why-not-lgpl.html>.
675-
{"mode":"full","isActive":false}
674+
<https://www.gnu.org/licenses/why-not-lgpl.html>.

src/common/unless.ts

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,23 @@
1+
/*
2+
Resuminator Backend, It act as backend service for Resuminator
3+
Copyright (C) 2021 Resuminator Authors
4+
5+
This file is part of Resuminator Backend.
6+
7+
Resuminator Backend is free software: you can redistribute it and/or modify
8+
it under the terms of the GNU General Public License as published by
9+
the Free Software Foundation, either version 3 of the License, or
10+
(at your option) any later version.
11+
12+
Resuminator Backend is distributed in the hope that it will be useful,
13+
but WITHOUT ANY WARRANTY; without even the implied warranty of
14+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15+
GNU General Public License for more details.
16+
17+
You should have received a copy of the GNU General Public License
18+
along with Resuminator Backend. If not, see <https://www.gnu.org/licenses/>.
19+
*/
20+
121
import { NextFunction, Request, Response } from 'express';
222

323
type Fn = (
@@ -19,4 +39,4 @@ const unless = (middleware: Fn, ...paths: Array<string>) => {
1939
};
2040
};
2141

22-
export default unless
42+
export default unless;

0 commit comments

Comments
 (0)