From 92dc0a640c98c4c1802c65fe75b276138ac4ce91 Mon Sep 17 00:00:00 2001 From: Andrew Dunstall Date: Sat, 6 Apr 2024 10:28:11 +0100 Subject: [PATCH] repo: remove license on files --- agent/config/config.go | 5 ----- cli/agent/command.go | 5 ----- cli/cli.go | 5 ----- cli/command.go | 5 ----- cli/server/command.go | 5 ----- main.go | 5 ----- pkg/log/logger.go | 5 ----- server/config/config.go | 5 ----- server/middleware/logger.go | 5 ----- server/middleware/metrics.go | 5 ----- server/server.go | 5 ----- 11 files changed, 55 deletions(-) diff --git a/agent/config/config.go b/agent/config/config.go index 65285a69..948dd252 100644 --- a/agent/config/config.go +++ b/agent/config/config.go @@ -1,8 +1,3 @@ -// Copyright 2024 Andrew Dunstall. All rights reserved. -// -// Use of this source code is governed by a MIT style license that can be -// found in the LICENSE file. - package config import ( diff --git a/cli/agent/command.go b/cli/agent/command.go index d2907114..69a38933 100644 --- a/cli/agent/command.go +++ b/cli/agent/command.go @@ -1,8 +1,3 @@ -// Copyright 2024 Andrew Dunstall. All rights reserved. -// -// Use of this source code is governed by a MIT style license that can be -// found in the LICENSE file. - package agent import ( diff --git a/cli/cli.go b/cli/cli.go index e7eb047d..cc91d21a 100644 --- a/cli/cli.go +++ b/cli/cli.go @@ -1,8 +1,3 @@ -// Copyright 2024 Andrew Dunstall. All rights reserved. -// -// Use of this source code is governed by a MIT style license that can be -// found in the LICENSE file. - package cli func Start() error { diff --git a/cli/command.go b/cli/command.go index 976cf46a..1d467f82 100644 --- a/cli/command.go +++ b/cli/command.go @@ -1,8 +1,3 @@ -// Copyright 2024 Andrew Dunstall. All rights reserved. -// -// Use of this source code is governed by a MIT style license that can be -// found in the LICENSE file. - package cli import ( diff --git a/cli/server/command.go b/cli/server/command.go index 8fc3ded8..c22bc8cb 100644 --- a/cli/server/command.go +++ b/cli/server/command.go @@ -1,8 +1,3 @@ -// Copyright 2024 Andrew Dunstall. All rights reserved. -// -// Use of this source code is governed by a MIT style license that can be -// found in the LICENSE file. - package server import ( diff --git a/main.go b/main.go index 971f0b26..ccc40c07 100644 --- a/main.go +++ b/main.go @@ -1,8 +1,3 @@ -// Copyright 2024 Andrew Dunstall. All rights reserved. -// -// Use of this source code is governed by a MIT style license that can be -// found in the LICENSE file. - package main import ( diff --git a/pkg/log/logger.go b/pkg/log/logger.go index fef01d02..4e7bc0ee 100644 --- a/pkg/log/logger.go +++ b/pkg/log/logger.go @@ -1,8 +1,3 @@ -// Copyright 2024 Andrew Dunstall. All rights reserved. -// -// Use of this source code is governed by a MIT style license that can be -// found in the LICENSE file. - package log import ( diff --git a/server/config/config.go b/server/config/config.go index acea2518..8ad03b25 100644 --- a/server/config/config.go +++ b/server/config/config.go @@ -1,8 +1,3 @@ -// Copyright 2024 Andrew Dunstall. All rights reserved. -// -// Use of this source code is governed by a MIT style license that can be -// found in the LICENSE file. - package config import "fmt" diff --git a/server/middleware/logger.go b/server/middleware/logger.go index 2e3cd85d..f1989130 100644 --- a/server/middleware/logger.go +++ b/server/middleware/logger.go @@ -1,8 +1,3 @@ -// Copyright 2024 Andrew Dunstall. All rights reserved. -// -// Use of this source code is governed by a MIT style license that can be -// found in the LICENSE file. - package middleware import ( diff --git a/server/middleware/metrics.go b/server/middleware/metrics.go index f02d3611..c99c1c0f 100644 --- a/server/middleware/metrics.go +++ b/server/middleware/metrics.go @@ -1,8 +1,3 @@ -// Copyright 2024 Andrew Dunstall. All rights reserved. -// -// Use of this source code is governed by a MIT style license that can be -// found in the LICENSE file. - package middleware import ( diff --git a/server/server.go b/server/server.go index a8357891..68b8de14 100644 --- a/server/server.go +++ b/server/server.go @@ -1,8 +1,3 @@ -// Copyright 2024 Andrew Dunstall. All rights reserved. -// -// Use of this source code is governed by a MIT style license that can be -// found in the LICENSE file. - package server import (