summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorBen Morrison <ben@gbmor.dev>2019-07-11 00:57:06 -0400
committerBen Morrison <ben@gbmor.dev>2019-07-11 00:57:06 -0400
commitf13255f2e6b248902192a8a124ebc8c2c9291627 (patch)
tree9196f30ab805d79e93c1d1292f0e4a0a31ac33e0
parent9d9a2e5a7131424e1c63c056d4599bbb550cc98a (diff)
downloadgetwtxt-f13255f2e6b248902192a8a124ebc8c2c9291627.tar.gz
license notice at top of each file
-rw-r--r--getwtxt.go19
-rw-r--r--svc/cache.go19
-rw-r--r--svc/cache_test.go19
-rw-r--r--svc/conf.go19
-rw-r--r--svc/conf_test.go19
-rw-r--r--svc/db.go19
-rw-r--r--svc/db_test.go19
-rw-r--r--svc/handlers.go19
-rw-r--r--svc/handlers_test.go19
-rw-r--r--svc/help.go19
-rw-r--r--svc/http.go19
-rw-r--r--svc/init.go19
-rw-r--r--svc/init_test.go19
-rw-r--r--svc/leveldb.go19
-rw-r--r--svc/periodic.go19
-rw-r--r--svc/post.go19
-rw-r--r--svc/post_test.go19
-rw-r--r--svc/query.go19
-rw-r--r--svc/query_test.go19
-rw-r--r--svc/sqlite.go19
-rw-r--r--svc/svc.go19
21 files changed, 399 insertions, 0 deletions
diff --git a/getwtxt.go b/getwtxt.go
index 8f176ab..45d04c3 100644
--- a/getwtxt.go
+++ b/getwtxt.go
@@ -1,3 +1,22 @@
+/*
+Copyright (c) 2019 Ben Morrison (gbmor)
+
+This file is part of Getwtxt.
+
+Getwtxt is free software: you can redistribute it and/or modify
+it under the terms of the GNU General Public License as published by
+the Free Software Foundation, either version 3 of the License, or
+(at your option) any later version.
+
+Getwtxt is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+GNU General Public License for more details.
+
+You should have received a copy of the GNU General Public License
+along with Getwtxt.  If not, see <https://www.gnu.org/licenses/>.
+*/
+
 package main
 
 import "github.com/getwtxt/getwtxt/svc"
diff --git a/svc/cache.go b/svc/cache.go
index c51478b..f887d05 100644
--- a/svc/cache.go
+++ b/svc/cache.go
@@ -1,3 +1,22 @@
+/*
+Copyright (c) 2019 Ben Morrison (gbmor)
+
+This file is part of Getwtxt.
+
+Getwtxt is free software: you can redistribute it and/or modify
+it under the terms of the GNU General Public License as published by
+the Free Software Foundation, either version 3 of the License, or
+(at your option) any later version.
+
+Getwtxt is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+GNU General Public License for more details.
+
+You should have received a copy of the GNU General Public License
+along with Getwtxt.  If not, see <https://www.gnu.org/licenses/>.
+*/
+
 package svc // import "github.com/getwtxt/getwtxt/svc"
 
 import (
diff --git a/svc/cache_test.go b/svc/cache_test.go
index af2b1de..d54d4c3 100644
--- a/svc/cache_test.go
+++ b/svc/cache_test.go
@@ -1,3 +1,22 @@
+/*
+Copyright (c) 2019 Ben Morrison (gbmor)
+
+This file is part of Getwtxt.
+
+Getwtxt is free software: you can redistribute it and/or modify
+it under the terms of the GNU General Public License as published by
+the Free Software Foundation, either version 3 of the License, or
+(at your option) any later version.
+
+Getwtxt is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+GNU General Public License for more details.
+
+You should have received a copy of the GNU General Public License
+along with Getwtxt.  If not, see <https://www.gnu.org/licenses/>.
+*/
+
 package svc // import "github.com/getwtxt/getwtxt/svc"
 
 import (
diff --git a/svc/conf.go b/svc/conf.go
index e80234f..b5b65ad 100644
--- a/svc/conf.go
+++ b/svc/conf.go
@@ -1,3 +1,22 @@
+/*
+Copyright (c) 2019 Ben Morrison (gbmor)
+
+This file is part of Getwtxt.
+
+Getwtxt is free software: you can redistribute it and/or modify
+it under the terms of the GNU General Public License as published by
+the Free Software Foundation, either version 3 of the License, or
+(at your option) any later version.
+
+Getwtxt is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+GNU General Public License for more details.
+
+You should have received a copy of the GNU General Public License
+along with Getwtxt.  If not, see <https://www.gnu.org/licenses/>.
+*/
+
 package svc // import "github.com/getwtxt/getwtxt/svc"
 
 import (
diff --git a/svc/conf_test.go b/svc/conf_test.go
index 5956fa1..8b19fe6 100644
--- a/svc/conf_test.go
+++ b/svc/conf_test.go
@@ -1,3 +1,22 @@
+/*
+Copyright (c) 2019 Ben Morrison (gbmor)
+
+This file is part of Getwtxt.
+
+Getwtxt is free software: you can redistribute it and/or modify
+it under the terms of the GNU General Public License as published by
+the Free Software Foundation, either version 3 of the License, or
+(at your option) any later version.
+
+Getwtxt is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+GNU General Public License for more details.
+
+You should have received a copy of the GNU General Public License
+along with Getwtxt.  If not, see <https://www.gnu.org/licenses/>.
+*/
+
 package svc
 
 import (
diff --git a/svc/db.go b/svc/db.go
index 2156f40..34b7c34 100644
--- a/svc/db.go
+++ b/svc/db.go
@@ -1,3 +1,22 @@
+/*
+Copyright (c) 2019 Ben Morrison (gbmor)
+
+This file is part of Getwtxt.
+
+Getwtxt is free software: you can redistribute it and/or modify
+it under the terms of the GNU General Public License as published by
+the Free Software Foundation, either version 3 of the License, or
+(at your option) any later version.
+
+Getwtxt is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+GNU General Public License for more details.
+
+You should have received a copy of the GNU General Public License
+along with Getwtxt.  If not, see <https://www.gnu.org/licenses/>.
+*/
+
 package svc // import "github.com/getwtxt/getwtxt/svc"
 
 import (
diff --git a/svc/db_test.go b/svc/db_test.go
index 1d2f7cf..f9ae26e 100644
--- a/svc/db_test.go
+++ b/svc/db_test.go
@@ -1,3 +1,22 @@
+/*
+Copyright (c) 2019 Ben Morrison (gbmor)
+
+This file is part of Getwtxt.
+
+Getwtxt is free software: you can redistribute it and/or modify
+it under the terms of the GNU General Public License as published by
+the Free Software Foundation, either version 3 of the License, or
+(at your option) any later version.
+
+Getwtxt is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+GNU General Public License for more details.
+
+You should have received a copy of the GNU General Public License
+along with Getwtxt.  If not, see <https://www.gnu.org/licenses/>.
+*/
+
 package svc // import "github.com/getwtxt/getwtxt/svc"
 
 import (
diff --git a/svc/handlers.go b/svc/handlers.go
index 973bd62..5a46521 100644
--- a/svc/handlers.go
+++ b/svc/handlers.go
@@ -1,3 +1,22 @@
+/*
+Copyright (c) 2019 Ben Morrison (gbmor)
+
+This file is part of Getwtxt.
+
+Getwtxt is free software: you can redistribute it and/or modify
+it under the terms of the GNU General Public License as published by
+the Free Software Foundation, either version 3 of the License, or
+(at your option) any later version.
+
+Getwtxt is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+GNU General Public License for more details.
+
+You should have received a copy of the GNU General Public License
+along with Getwtxt.  If not, see <https://www.gnu.org/licenses/>.
+*/
+
 package svc // import "github.com/getwtxt/getwtxt/svc"
 
 import (
diff --git a/svc/handlers_test.go b/svc/handlers_test.go
index b991b3e..a2d77e2 100644
--- a/svc/handlers_test.go
+++ b/svc/handlers_test.go
@@ -1,3 +1,22 @@
+/*
+Copyright (c) 2019 Ben Morrison (gbmor)
+
+This file is part of Getwtxt.
+
+Getwtxt is free software: you can redistribute it and/or modify
+it under the terms of the GNU General Public License as published by
+the Free Software Foundation, either version 3 of the License, or
+(at your option) any later version.
+
+Getwtxt is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+GNU General Public License for more details.
+
+You should have received a copy of the GNU General Public License
+along with Getwtxt.  If not, see <https://www.gnu.org/licenses/>.
+*/
+
 package svc // import "github.com/getwtxt/getwtxt/svc"
 
 import (
diff --git a/svc/help.go b/svc/help.go
index f3bbfab..2e4ec2b 100644
--- a/svc/help.go
+++ b/svc/help.go
@@ -1,3 +1,22 @@
+/*
+Copyright (c) 2019 Ben Morrison (gbmor)
+
+This file is part of Getwtxt.
+
+Getwtxt is free software: you can redistribute it and/or modify
+it under the terms of the GNU General Public License as published by
+the Free Software Foundation, either version 3 of the License, or
+(at your option) any later version.
+
+Getwtxt is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+GNU General Public License for more details.
+
+You should have received a copy of the GNU General Public License
+along with Getwtxt.  If not, see <https://www.gnu.org/licenses/>.
+*/
+
 package svc // import "github.com/getwtxt/getwtxt/svc"
 
 import "fmt"
diff --git a/svc/http.go b/svc/http.go
index 95cb613..0c1d7e8 100644
--- a/svc/http.go
+++ b/svc/http.go
@@ -1,3 +1,22 @@
+/*
+Copyright (c) 2019 Ben Morrison (gbmor)
+
+This file is part of Getwtxt.
+
+Getwtxt is free software: you can redistribute it and/or modify
+it under the terms of the GNU General Public License as published by
+the Free Software Foundation, either version 3 of the License, or
+(at your option) any later version.
+
+Getwtxt is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+GNU General Public License for more details.
+
+You should have received a copy of the GNU General Public License
+along with Getwtxt.  If not, see <https://www.gnu.org/licenses/>.
+*/
+
 package svc // import "github.com/getwtxt/getwtxt/svc"
 
 import (
diff --git a/svc/init.go b/svc/init.go
index 419e684..1d8b0c6 100644
--- a/svc/init.go
+++ b/svc/init.go
@@ -1,3 +1,22 @@
+/*
+Copyright (c) 2019 Ben Morrison (gbmor)
+
+This file is part of Getwtxt.
+
+Getwtxt is free software: you can redistribute it and/or modify
+it under the terms of the GNU General Public License as published by
+the Free Software Foundation, either version 3 of the License, or
+(at your option) any later version.
+
+Getwtxt is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+GNU General Public License for more details.
+
+You should have received a copy of the GNU General Public License
+along with Getwtxt.  If not, see <https://www.gnu.org/licenses/>.
+*/
+
 package svc // import "github.com/getwtxt/getwtxt/svc"
 
 import (
diff --git a/svc/init_test.go b/svc/init_test.go
index 21f0bba..9273a9b 100644
--- a/svc/init_test.go
+++ b/svc/init_test.go
@@ -1,3 +1,22 @@
+/*
+Copyright (c) 2019 Ben Morrison (gbmor)
+
+This file is part of Getwtxt.
+
+Getwtxt is free software: you can redistribute it and/or modify
+it under the terms of the GNU General Public License as published by
+the Free Software Foundation, either version 3 of the License, or
+(at your option) any later version.
+
+Getwtxt is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+GNU General Public License for more details.
+
+You should have received a copy of the GNU General Public License
+along with Getwtxt.  If not, see <https://www.gnu.org/licenses/>.
+*/
+
 package svc // import "github.com/getwtxt/getwtxt/svc"
 
 import (
diff --git a/svc/leveldb.go b/svc/leveldb.go
index 3a1fccf..31f0953 100644
--- a/svc/leveldb.go
+++ b/svc/leveldb.go
@@ -1,3 +1,22 @@
+/*
+Copyright (c) 2019 Ben Morrison (gbmor)
+
+This file is part of Getwtxt.
+
+Getwtxt is free software: you can redistribute it and/or modify
+it under the terms of the GNU General Public License as published by
+the Free Software Foundation, either version 3 of the License, or
+(at your option) any later version.
+
+Getwtxt is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+GNU General Public License for more details.
+
+You should have received a copy of the GNU General Public License
+along with Getwtxt.  If not, see <https://www.gnu.org/licenses/>.
+*/
+
 package svc // import "github.com/getwtxt/getwtxt/svc"
 
 import (
diff --git a/svc/periodic.go b/svc/periodic.go
index f27b08e..2c08e46 100644
--- a/svc/periodic.go
+++ b/svc/periodic.go
@@ -1,3 +1,22 @@
+/*
+Copyright (c) 2019 Ben Morrison (gbmor)
+
+This file is part of Getwtxt.
+
+Getwtxt is free software: you can redistribute it and/or modify
+it under the terms of the GNU General Public License as published by
+the Free Software Foundation, either version 3 of the License, or
+(at your option) any later version.
+
+Getwtxt is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+GNU General Public License for more details.
+
+You should have received a copy of the GNU General Public License
+along with Getwtxt.  If not, see <https://www.gnu.org/licenses/>.
+*/
+
 package svc // import "github.com/getwtxt/getwtxt/svc"
 
 import (
diff --git a/svc/post.go b/svc/post.go
index 5908673..db4afd7 100644
--- a/svc/post.go
+++ b/svc/post.go
@@ -1,3 +1,22 @@
+/*
+Copyright (c) 2019 Ben Morrison (gbmor)
+
+This file is part of Getwtxt.
+
+Getwtxt is free software: you can redistribute it and/or modify
+it under the terms of the GNU General Public License as published by
+the Free Software Foundation, either version 3 of the License, or
+(at your option) any later version.
+
+Getwtxt is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+GNU General Public License for more details.
+
+You should have received a copy of the GNU General Public License
+along with Getwtxt.  If not, see <https://www.gnu.org/licenses/>.
+*/
+
 package svc // import "github.com/getwtxt/getwtxt/svc"
 
 import (
diff --git a/svc/post_test.go b/svc/post_test.go
index 87db88d..f799a08 100644
--- a/svc/post_test.go
+++ b/svc/post_test.go
@@ -1,3 +1,22 @@
+/*
+Copyright (c) 2019 Ben Morrison (gbmor)
+
+This file is part of Getwtxt.
+
+Getwtxt is free software: you can redistribute it and/or modify
+it under the terms of the GNU General Public License as published by
+the Free Software Foundation, either version 3 of the License, or
+(at your option) any later version.
+
+Getwtxt is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+GNU General Public License for more details.
+
+You should have received a copy of the GNU General Public License
+along with Getwtxt.  If not, see <https://www.gnu.org/licenses/>.
+*/
+
 package svc // import "github.com/getwtxt/getwtxt/svc"
 
 import (
diff --git a/svc/query.go b/svc/query.go
index 6122850..24541fc 100644
--- a/svc/query.go
+++ b/svc/query.go
@@ -1,3 +1,22 @@
+/*
+Copyright (c) 2019 Ben Morrison (gbmor)
+
+This file is part of Getwtxt.
+
+Getwtxt is free software: you can redistribute it and/or modify
+it under the terms of the GNU General Public License as published by
+the Free Software Foundation, either version 3 of the License, or
+(at your option) any later version.
+
+Getwtxt is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+GNU General Public License for more details.
+
+You should have received a copy of the GNU General Public License
+along with Getwtxt.  If not, see <https://www.gnu.org/licenses/>.
+*/
+
 package svc // import "github.com/getwtxt/getwtxt/svc"
 
 import (
diff --git a/svc/query_test.go b/svc/query_test.go
index 5581592..78d807b 100644
--- a/svc/query_test.go
+++ b/svc/query_test.go
@@ -1,3 +1,22 @@
+/*
+Copyright (c) 2019 Ben Morrison (gbmor)
+
+This file is part of Getwtxt.
+
+Getwtxt is free software: you can redistribute it and/or modify
+it under the terms of the GNU General Public License as published by
+the Free Software Foundation, either version 3 of the License, or
+(at your option) any later version.
+
+Getwtxt is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+GNU General Public License for more details.
+
+You should have received a copy of the GNU General Public License
+along with Getwtxt.  If not, see <https://www.gnu.org/licenses/>.
+*/
+
 package svc // import "github.com/getwtxt/getwtxt/svc"
 
 import (
diff --git a/svc/sqlite.go b/svc/sqlite.go
index c9a9f5a..572651f 100644
--- a/svc/sqlite.go
+++ b/svc/sqlite.go
@@ -1,3 +1,22 @@
+/*
+Copyright (c) 2019 Ben Morrison (gbmor)
+
+This file is part of Getwtxt.
+
+Getwtxt is free software: you can redistribute it and/or modify
+it under the terms of the GNU General Public License as published by
+the Free Software Foundation, either version 3 of the License, or
+(at your option) any later version.
+
+Getwtxt is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+GNU General Public License for more details.
+
+You should have received a copy of the GNU General Public License
+along with Getwtxt.  If not, see <https://www.gnu.org/licenses/>.
+*/
+
 package svc // import "github.com/getwtxt/getwtxt/svc"
 
 import (
diff --git a/svc/svc.go b/svc/svc.go
index d8b4128..b20ac7a 100644
--- a/svc/svc.go
+++ b/svc/svc.go
@@ -1,3 +1,22 @@
+/*
+Copyright (c) 2019 Ben Morrison (gbmor)
+
+This file is part of Getwtxt.
+
+Getwtxt is free software: you can redistribute it and/or modify
+it under the terms of the GNU General Public License as published by
+the Free Software Foundation, either version 3 of the License, or
+(at your option) any later version.
+
+Getwtxt is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+GNU General Public License for more details.
+
+You should have received a copy of the GNU General Public License
+along with Getwtxt.  If not, see <https://www.gnu.org/licenses/>.
+*/
+
 package svc // import "github.com/getwtxt/getwtxt/svc"
 
 import (