Skip to content

Commit 21cbbaf

Browse files
committed
AUTHORS and License details
1 parent 0328279 commit 21cbbaf

11 files changed

+39
-1
lines changed

AUTHORS

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
Ian Denhardt <[email protected]>
2+
Wael Nasreddine <[email protected]>

db.go

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
package notmuch
22

3+
// Copyright © 2015 The go.bindings Authors. Authors can be found in the AUTHORS file.
4+
// Licensed under the GPLv3 or later.
5+
// See COPYING at the root of the repository for details.
6+
37
// #cgo LDFLAGS: -lnotmuch
48
// #include <stdlib.h>
59
// #include <notmuch.h>

db_test.go

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
package notmuch
22

3+
// Copyright © 2015 The go.bindings Authors. Authors can be found in the AUTHORS file.
4+
// Licensed under the GPLv3 or later.
5+
// See COPYING at the root of the repository for details.
6+
37
import (
48
"os"
59
"path"

doc.go

+4
Original file line numberDiff line numberDiff line change
@@ -17,3 +17,7 @@
1717
// * Functions which in C return a status code and pass back a value via a pointer
1818
// argument now return a (value, error) pair.
1919
package notmuch
20+
21+
// Copyright © 2015 The go.bindings Authors. Authors can be found in the AUTHORS file.
22+
// Licensed under the GPLv3 or later.
23+
// See COPYING at the root of the repository for details.

example/main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package main
22

3-
// Copyright © 2015 Ian Denhardt <[email protected]>
3+
// Copyright © 2015 The go.bindings Authors. Authors can be found in the AUTHORS file.
44
// Licensed under the GPLv3 or later.
55
// See COPYING at the root of the repository for details.
66

message.go

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
package notmuch
22

3+
// Copyright © 2015 The go.bindings Authors. Authors can be found in the AUTHORS file.
4+
// Licensed under the GPLv3 or later.
5+
// See COPYING at the root of the repository for details.
6+
37
// #cgo LDFLAGS: -lnotmuch
48
// #include <stdlib.h>
59
// #include <notmuch.h>

query.go

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
package notmuch
22

3+
// Copyright © 2015 The go.bindings Authors. Authors can be found in the AUTHORS file.
4+
// Licensed under the GPLv3 or later.
5+
// See COPYING at the root of the repository for details.
6+
37
// #cgo LDFLAGS: -lnotmuch
48
// #include <stdlib.h>
59
// #include <notmuch.h>

query_test.go

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
package notmuch
22

3+
// Copyright © 2015 The go.bindings Authors. Authors can be found in the AUTHORS file.
4+
// Licensed under the GPLv3 or later.
5+
// See COPYING at the root of the repository for details.
6+
37
import "testing"
48

59
func TestSearchThreads(t *testing.T) {

thread.go

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
package notmuch
22

3+
// Copyright © 2015 The go.bindings Authors. Authors can be found in the AUTHORS file.
4+
// Licensed under the GPLv3 or later.
5+
// See COPYING at the root of the repository for details.
6+
37
// #cgo LDFLAGS: -lnotmuch
48
// #include <stdlib.h>
59
// #include <notmuch.h>

thread_test.go

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
package notmuch
22

3+
// Copyright © 2015 The go.bindings Authors. Authors can be found in the AUTHORS file.
4+
// Licensed under the GPLv3 or later.
5+
// See COPYING at the root of the repository for details.
6+
37
import "testing"
48

59
func TestGetThreadID(t *testing.T) {

utils.go

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
package notmuch
22

3+
// Copyright © 2015 The go.bindings Authors. Authors can be found in the AUTHORS file.
4+
// Licensed under the GPLv3 or later.
5+
// See COPYING at the root of the repository for details.
6+
37
// #cgo LDFLAGS: -lnotmuch
48
// #include <stdlib.h>
59
// #include <notmuch.h>

0 commit comments

Comments
 (0)