From eaa4efe5afd8c9c22f56d2fcc6ef5800abc0b561 Mon Sep 17 00:00:00 2001 From: Elias Naur Date: Wed, 7 Aug 2019 15:59:36 +0200 Subject: [PATCH] all: add missing licence headers Signed-off-by: Elias Naur --- apps/gophers/main_test.go | 2 ++ ui/app/gl_js.go | 2 ++ ui/app/internal/gl/types_js.go | 2 ++ ui/app/internal/gpu/caches.go | 2 ++ ui/app/internal/gpu/context.go | 2 ++ ui/app/os_js.go | 2 ++ ui/internal/opconst/ops.go | 2 ++ ui/internal/ops/reader.go | 2 ++ ui/ops.go | 2 ++ 9 files changed, 18 insertions(+) diff --git a/apps/gophers/main_test.go b/apps/gophers/main_test.go index 2b189ced..45300002 100644 --- a/apps/gophers/main_test.go +++ b/apps/gophers/main_test.go @@ -1,3 +1,5 @@ +// SPDX-License-Identifier: Unlicense OR MIT + package main import ( diff --git a/ui/app/gl_js.go b/ui/app/gl_js.go index b4b25265..3ccc99e4 100644 --- a/ui/app/gl_js.go +++ b/ui/app/gl_js.go @@ -1,3 +1,5 @@ +// SPDX-License-Identifier: Unlicense OR MIT + package app import ( diff --git a/ui/app/internal/gl/types_js.go b/ui/app/internal/gl/types_js.go index 954cf0e5..61be5608 100644 --- a/ui/app/internal/gl/types_js.go +++ b/ui/app/internal/gl/types_js.go @@ -1,3 +1,5 @@ +// SPDX-License-Identifier: Unlicense OR MIT + package gl import "syscall/js" diff --git a/ui/app/internal/gpu/caches.go b/ui/app/internal/gpu/caches.go index 4de57bfd..92bd740b 100644 --- a/ui/app/internal/gpu/caches.go +++ b/ui/app/internal/gpu/caches.go @@ -1,3 +1,5 @@ +// SPDX-License-Identifier: Unlicense OR MIT + package gpu import ( diff --git a/ui/app/internal/gpu/context.go b/ui/app/internal/gpu/context.go index 6075134b..47e7d9fa 100644 --- a/ui/app/internal/gpu/context.go +++ b/ui/app/internal/gpu/context.go @@ -1,3 +1,5 @@ +// SPDX-License-Identifier: Unlicense OR MIT + package gpu import ( diff --git a/ui/app/os_js.go b/ui/app/os_js.go index 6771336a..fd1e22d8 100644 --- a/ui/app/os_js.go +++ b/ui/app/os_js.go @@ -1,3 +1,5 @@ +// SPDX-License-Identifier: Unlicense OR MIT + package app import ( diff --git a/ui/internal/opconst/ops.go b/ui/internal/opconst/ops.go index c848cc9c..23b0f0e8 100644 --- a/ui/internal/opconst/ops.go +++ b/ui/internal/opconst/ops.go @@ -1,3 +1,5 @@ +// SPDX-License-Identifier: Unlicense OR MIT + package opconst type OpType byte diff --git a/ui/internal/ops/reader.go b/ui/internal/ops/reader.go index 859d67e9..7306e45c 100644 --- a/ui/internal/ops/reader.go +++ b/ui/internal/ops/reader.go @@ -1,3 +1,5 @@ +// SPDX-License-Identifier: Unlicense OR MIT + package ops import ( diff --git a/ui/ops.go b/ui/ops.go index a00abf99..00b436ba 100644 --- a/ui/ops.go +++ b/ui/ops.go @@ -1,3 +1,5 @@ +// SPDX-License-Identifier: Unlicense OR MIT + package ui import (