Skip to content

Commit 969ab07

Browse files
committed
all: add copyright notice
1 parent a3be049 commit 969ab07

File tree

13 files changed

+52
-0
lines changed

13 files changed

+52
-0
lines changed

configs/config.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# Copyright 2020 The golang.design Initiative authors.
2+
# All rights reserved. Use of this source code is governed
3+
# by a GPLv3 license that can be found in the LICENSE file.
4+
15
---
26
addr: localhost:6789
37
mode: debug

configs/docker.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# Copyright 2020 The golang.design Initiative authors.
2+
# All rights reserved. Use of this source code is governed
3+
# by a GPLv3 license that can be found in the LICENSE file.
4+
15
---
26
addr: 0.0.0.0:6789
37
mode: release

docker/Dockerfile

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# Copyright 2020 The golang.design Initiative authors.
2+
# All rights reserved. Use of this source code is governed
3+
# by a GPLv3 license that can be found in the LICENSE file.
4+
15
FROM golang:1.14-alpine
26
WORKDIR /app
37
ADD . /app

public/dark.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
// Copyright 2020 The golang.design Initiative authors.
2+
// All rights reserved. Use of this source code is governed
3+
// by a GPLv3 license that can be found in the LICENSE file.
4+
15
document.getElementById('dark-mode-checkbox').onchange = () => {
26
darkmode()
37
}

public/main.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
// Copyright 2020 The golang.design Initiative authors.
2+
// All rights reserved. Use of this source code is governed
3+
// by a GPLv3 license that can be found in the LICENSE file.
4+
15
function ping() {
26
fetch('/api/v1/ping').then(res => res.json()).then(data => {
37
document.getElementById('version').innerText = data.go_version;

public/scrollbar.css

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
/* Copyright 2020 The golang.design Initiative authors.
2+
All rights reserved. Use of this source code is governed
3+
by a GPLv3 license that can be found in the LICENSE file. */
4+
15
/* better scroll bar */
26
::-webkit-scrollbar {
37
width: 10px;

public/style.css

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
/* Copyright 2020 The golang.design Initiative authors.
2+
All rights reserved. Use of this source code is governed
3+
by a GPLv3 license that can be found in the LICENSE file. */
4+
15
body {
26
margin: 0;
37
}

src/boot/boot.go

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
// Copyright 2020 The golang.design Initiative authors.
2+
// All rights reserved. Use of this source code is governed
3+
// by a GPLv3 license that can be found in the LICENSE file.
4+
15
package boot
26

37
import (

src/config/config.go

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
// Copyright 2020 The golang.design Initiative authors.
2+
// All rights reserved. Use of this source code is governed
3+
// by a GPLv3 license that can be found in the LICENSE file.
4+
15
package config
26

37
import (

src/route/api.go

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
// Copyright 2020 The golang.design Initiative authors.
2+
// All rights reserved. Use of this source code is governed
3+
// by a GPLv3 license that can be found in the LICENSE file.
4+
15
package route
26

37
import (

0 commit comments

Comments
 (0)