From 9e2cf8500ac397ccf50df3fa6774ca8f3edf35d9 Mon Sep 17 00:00:00 2001 From: perp Date: Thu, 6 Jun 2024 19:17:55 +0100 Subject: [PATCH] Changed comment --- internal/jwt/decode.go | 14 -------------- internal/jwt/encode.go | 14 -------------- internal/jwt/jwt.go | 16 +--------------- 3 files changed, 1 insertion(+), 43 deletions(-) diff --git a/internal/jwt/decode.go b/internal/jwt/decode.go index 3a12701..635747a 100644 --- a/internal/jwt/decode.go +++ b/internal/jwt/decode.go @@ -1,17 +1,3 @@ -// Copyright 2024 perp (supernets) -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - package jwt import ( diff --git a/internal/jwt/encode.go b/internal/jwt/encode.go index c05e151..26ed741 100644 --- a/internal/jwt/encode.go +++ b/internal/jwt/encode.go @@ -1,17 +1,3 @@ -// Copyright 2024 perp (supernets) -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - package jwt import ( diff --git a/internal/jwt/jwt.go b/internal/jwt/jwt.go index c64d692..fc5edef 100644 --- a/internal/jwt/jwt.go +++ b/internal/jwt/jwt.go @@ -1,17 +1,3 @@ -// Copyright 2024 perp (supernets) -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - package jwt import "github.com/golang-jwt/jwt" @@ -22,7 +8,7 @@ var secret []byte // JWT claims type Claims struct { jwt.StandardClaims - ID int64 `json:"id"` // User ID + ID int64 `json:"id"` // Account ID } // Set the JWT secret