aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Fischer <florian.fl.fischer@fau.de>2017-02-07 18:05:18 +0100
committerFlorian Fischer <florian.fl.fischer@fau.de>2017-02-07 18:05:18 +0100
commitef6dd8dee004d6866209825ca6b2757a21ac9c15 (patch)
tree811964959e6f933509226a7fd138724a929089fc
parentfdda6a71a855d0a671b8eadee9c1bf395c9b4f8a (diff)
downloadgoffel-ef6dd8dee004d6866209825ca6b2757a21ac9c15.tar.gz
goffel-ef6dd8dee004d6866209825ca6b2757a21ac9c15.zip
add MIT License
-rw-r--r--LICENSE19
-rw-r--r--logic/cmd.go3
-rw-r--r--logic/cmd_test.go3
-rw-r--r--logic/dices.go3
-rw-r--r--logic/dices_test.go3
-rw-r--r--logic/score.go3
-rw-r--r--logic/score_test.go3
-rw-r--r--uis/client.go3
-rw-r--r--uis/interactive.go3
-rw-r--r--uis/server.go3
10 files changed, 46 insertions, 0 deletions
diff --git a/LICENSE b/LICENSE
new file mode 100644
index 0000000..404df62
--- /dev/null
+++ b/LICENSE
@@ -0,0 +1,19 @@
+Copyright (c) 2016 Florian Fischer
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.
diff --git a/logic/cmd.go b/logic/cmd.go
index 76a95b9..7378e37 100644
--- a/logic/cmd.go
+++ b/logic/cmd.go
@@ -1,3 +1,6 @@
+// Copyright (c) 2016 Florian Fischer. All rights reserved.
+// Use of this source code is governed by a MIT license found in the LICENSE file.
+
package logic
import (
diff --git a/logic/cmd_test.go b/logic/cmd_test.go
index 01dfc0c..6b131d6 100644
--- a/logic/cmd_test.go
+++ b/logic/cmd_test.go
@@ -1,3 +1,6 @@
+// Copyright (c) 2016 Florian Fischer. All rights reserved.
+// Use of this source code is governed by a MIT license found in the LICENSE file.
+
package logic
import "testing"
diff --git a/logic/dices.go b/logic/dices.go
index 9fd481c..5c0deba 100644
--- a/logic/dices.go
+++ b/logic/dices.go
@@ -1,3 +1,6 @@
+// Copyright (c) 2016 Florian Fischer. All rights reserved.
+// Use of this source code is governed by a MIT license found in the LICENSE file.
+
package logic
import (
diff --git a/logic/dices_test.go b/logic/dices_test.go
index a18ecca..2a6c67c 100644
--- a/logic/dices_test.go
+++ b/logic/dices_test.go
@@ -1,3 +1,6 @@
+// Copyright (c) 2016 Florian Fischer. All rights reserved.
+// Use of this source code is governed by a MIT license found in the LICENSE file.
+
package logic
import "testing"
diff --git a/logic/score.go b/logic/score.go
index 37b1e82..af6eefc 100644
--- a/logic/score.go
+++ b/logic/score.go
@@ -1,3 +1,6 @@
+// Copyright (c) 2016 Florian Fischer. All rights reserved.
+// Use of this source code is governed by a MIT license found in the LICENSE file.
+
package logic
import (
diff --git a/logic/score_test.go b/logic/score_test.go
index 7dbf559..4fe0000 100644
--- a/logic/score_test.go
+++ b/logic/score_test.go
@@ -1,3 +1,6 @@
+// Copyright (c) 2016 Florian Fischer. All rights reserved.
+// Use of this source code is governed by a MIT license found in the LICENSE file.
+
package logic
import "testing"
diff --git a/uis/client.go b/uis/client.go
index 6f7886a..6b1d1d9 100644
--- a/uis/client.go
+++ b/uis/client.go
@@ -1,3 +1,6 @@
+// Copyright (c) 2016 Florian Fischer. All rights reserved.
+// Use of this source code is governed by a MIT license found in the LICENSE file.
+
package uis
type Client struct {
diff --git a/uis/interactive.go b/uis/interactive.go
index b047e92..1bbcc7f 100644
--- a/uis/interactive.go
+++ b/uis/interactive.go
@@ -1,3 +1,6 @@
+// Copyright (c) 2016 Florian Fischer. All rights reserved.
+// Use of this source code is governed by a MIT license found in the LICENSE file.
+
package uis
import (
diff --git a/uis/server.go b/uis/server.go
index e83e6a9..890abb9 100644
--- a/uis/server.go
+++ b/uis/server.go
@@ -1,3 +1,6 @@
+// Copyright (c) 2016 Florian Fischer. All rights reserved.
+// Use of this source code is governed by a MIT license found in the LICENSE file.
+
package uis
type Server struct {