From adc59bb5eaed21b6e768d31e0f5a6fcb77bc45a4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B8rn=20Erik=20Pedersen?= Date: Wed, 27 Nov 2024 13:46:02 +0100 Subject: [PATCH] Add license headers to source files MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ``` addlicense -c "Bjørn Erik Pedersen" -l mit -s=only -ignore "**/*.yml" . ``` --- conn.go | 3 +++ internal/godartsasstesting/settings.go | 3 +++ misc_test.go | 3 +++ options.go | 3 +++ options_test.go | 3 +++ transpiler.go | 3 +++ transpiler_test.go | 3 +++ 7 files changed, 21 insertions(+) diff --git a/conn.go b/conn.go index dfc33a3..44bfe46 100644 --- a/conn.go +++ b/conn.go @@ -1,3 +1,6 @@ +// Copyright 2024 Bjørn Erik Pedersen +// SPDX-License-Identifier: MIT + package godartsass import ( diff --git a/internal/godartsasstesting/settings.go b/internal/godartsasstesting/settings.go index 6ee917d..db0599c 100644 --- a/internal/godartsasstesting/settings.go +++ b/internal/godartsasstesting/settings.go @@ -1,3 +1,6 @@ +// Copyright 2024 Bjørn Erik Pedersen +// SPDX-License-Identifier: MIT + package godartsasstesting import ( diff --git a/misc_test.go b/misc_test.go index 9bcb42b..69ca3e6 100644 --- a/misc_test.go +++ b/misc_test.go @@ -1,3 +1,6 @@ +// Copyright 2024 Bjørn Erik Pedersen +// SPDX-License-Identifier: MIT + package godartsass import ( diff --git a/options.go b/options.go index a4f08d1..a48c03e 100644 --- a/options.go +++ b/options.go @@ -1,3 +1,6 @@ +// Copyright 2024 Bjørn Erik Pedersen +// SPDX-License-Identifier: MIT + package godartsass import ( diff --git a/options_test.go b/options_test.go index ff3e4e3..4b49206 100644 --- a/options_test.go +++ b/options_test.go @@ -1,3 +1,6 @@ +// Copyright 2024 Bjørn Erik Pedersen +// SPDX-License-Identifier: MIT + package godartsass import ( diff --git a/transpiler.go b/transpiler.go index 93b2198..530f884 100644 --- a/transpiler.go +++ b/transpiler.go @@ -1,3 +1,6 @@ +// Copyright 2024 Bjørn Erik Pedersen +// SPDX-License-Identifier: MIT + // Package godartsass provides a Go API for the Dass Sass Embedded protocol. // // Use the Start function to create and start a new thread safe transpiler. diff --git a/transpiler_test.go b/transpiler_test.go index 8c7aa3f..e1b6892 100644 --- a/transpiler_test.go +++ b/transpiler_test.go @@ -1,3 +1,6 @@ +// Copyright 2024 Bjørn Erik Pedersen +// SPDX-License-Identifier: MIT + package godartsass_test import (