File tree Expand file tree Collapse file tree 2 files changed +22
-3
lines changed Expand file tree Collapse file tree 2 files changed +22
-3
lines changed Original file line number Diff line number Diff line change @@ -671,5 +671,4 @@ into proprietary programs. If your program is a subroutine library, you
671
671
may consider it more useful to permit linking proprietary applications with
672
672
the library. If this is what you want to do, use the GNU Lesser General
673
673
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>.
Original file line number Diff line number Diff line change
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
+
1
21
import { NextFunction , Request , Response } from 'express' ;
2
22
3
23
type Fn = (
@@ -19,4 +39,4 @@ const unless = (middleware: Fn, ...paths: Array<string>) => {
19
39
} ;
20
40
} ;
21
41
22
- export default unless
42
+ export default unless ;
You can’t perform that action at this time.
0 commit comments