aboutsummaryrefslogtreecommitdiff
path: root/lib/http/fs_handler.go
diff options
context:
space:
mode:
authorShulhan <ms@kilabit.info>2026-01-15 17:14:54 +0700
committerShulhan <ms@kilabit.info>2026-01-15 17:26:33 +0700
commit7db8c302e1396eda40cd6a1e57f58ed791448556 (patch)
tree89231c859d728deff0582d276f1b809243b6b2f2 /lib/http/fs_handler.go
parentb1f8d27c7e22eb5624c56e890e51f0a34c7b9606 (diff)
downloadpakakeh.go-7db8c302e1396eda40cd6a1e57f58ed791448556.tar.xz
all: convert license and copyright to use SPDX identifiers
With help of spdxconv tool [1], we able to bulk update all files license and copyright format to comply with SPDX formats. [1] https://kilabit.info/project/spdxconv/
Diffstat (limited to 'lib/http/fs_handler.go')
-rw-r--r--lib/http/fs_handler.go7
1 files changed, 3 insertions, 4 deletions
diff --git a/lib/http/fs_handler.go b/lib/http/fs_handler.go
index 7dfca198..00eb1dc6 100644
--- a/lib/http/fs_handler.go
+++ b/lib/http/fs_handler.go
@@ -1,6 +1,5 @@
-// Copyright 2022, Shulhan <ms@kilabit.info>. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
+// SPDX-License-Identifier: BSD-3-Clause
+// SPDX-FileCopyrightText: 2022 Shulhan <ms@kilabit.info>
package http
@@ -18,7 +17,7 @@ import (
// This function return two values: the node `out` that is used to process the
// request and response; and the HTTP status code `statusCode` returned in
// response.
-//
+
// Non-zero status code indicates that the function already response
// to the request, and the server will return immediately.
//