From 749c22e83a8cc596ce462c8e3feb7770a5dca31b Mon Sep 17 00:00:00 2001 From: "Sascha L. Teichmann" Date: Sun, 3 Aug 2014 15:59:56 +0200 Subject: [PATCH] Added license: MIT --- LICENSE | 21 +++++++++++++++++++++ backend.go | 4 ++++ connection.go | 4 ++++ leveldb.go | 4 ++++ main.go | 4 ++++ parser.go | 4 ++++ sqlite.go | 4 ++++ 7 files changed, 45 insertions(+) create mode 100644 LICENSE diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..34ef440 --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) 2014 Sascha L. Teichmann + +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/backend.go b/backend.go index 9085056..498fb56 100644 --- a/backend.go +++ b/backend.go @@ -1,3 +1,7 @@ +// Copyright 2014 by Sascha L. Teichmann +// Use of this source code is governed by the MIT license +// that can be found in the LICENSE file. + package main type Backend interface { diff --git a/connection.go b/connection.go index d7f8da4..f2a9485 100644 --- a/connection.go +++ b/connection.go @@ -1,3 +1,7 @@ +// Copyright 2014 by Sascha L. Teichmann +// Use of this source code is governed by the MIT license +// that can be found in the LICENSE file. + package main import ( diff --git a/leveldb.go b/leveldb.go index e0e92fb..b55f3fc 100644 --- a/leveldb.go +++ b/leveldb.go @@ -1,3 +1,7 @@ +// Copyright 2014 by Sascha L. Teichmann +// Use of this source code is governed by the MIT license +// that can be found in the LICENSE file. + package main import ( diff --git a/main.go b/main.go index 5cd4e5e..9349d58 100644 --- a/main.go +++ b/main.go @@ -1,3 +1,7 @@ +// Copyright 2014 by Sascha L. Teichmann +// Use of this source code is governed by the MIT license +// that can be found in the LICENSE file. + package main import ( diff --git a/parser.go b/parser.go index 91636d6..86a7baa 100644 --- a/parser.go +++ b/parser.go @@ -1,3 +1,7 @@ +// Copyright 2014 by Sascha L. Teichmann +// Use of this source code is governed by the MIT license +// that can be found in the LICENSE file. + package main import ( diff --git a/sqlite.go b/sqlite.go index 32e46c2..f1e015f 100644 --- a/sqlite.go +++ b/sqlite.go @@ -1,3 +1,7 @@ +// Copyright 2014 by Sascha L. Teichmann +// Use of this source code is governed by the MIT license +// that can be found in the LICENSE file. + package main import (