license: added license header

This commit is contained in:
Michał Matczuk
2017-09-21 21:43:27 +02:00
parent 0b29eb569a
commit 9e40fcfed4
30 changed files with 120 additions and 0 deletions

View File

@@ -1,3 +1,7 @@
// Copyright (C) 2017 ScyllaDB
// Use of this source code is governed by a ALv2-style
// license that can be found in the LICENSE file.
// +build all integration // +build all integration
package gocqlx_test package gocqlx_test

View File

@@ -1,3 +1,7 @@
// Copyright (C) 2017 ScyllaDB
// Use of this source code is governed by a ALv2-style
// license that can be found in the LICENSE file.
package gocqlx_test package gocqlx_test
import ( import (

4
doc.go
View File

@@ -1,3 +1,7 @@
// Copyright (C) 2017 ScyllaDB
// Use of this source code is governed by a ALv2-style
// license that can be found in the LICENSE file.
// Package gocqlx is a productivity toolkit for ScyllaDB and Apache Cassandra®. // Package gocqlx is a productivity toolkit for ScyllaDB and Apache Cassandra®.
// It's an extension of `gocql`, similar to what `sqlx` is to `database/sql`. // It's an extension of `gocql`, similar to what `sqlx` is to `database/sql`.
// //

View File

@@ -1,3 +1,7 @@
// Copyright (C) 2017 ScyllaDB
// Use of this source code is governed by a ALv2-style
// license that can be found in the LICENSE file.
// +build all integration // +build all integration
package gocqlx_test package gocqlx_test

View File

@@ -1,3 +1,7 @@
// Copyright (C) 2017 ScyllaDB
// Use of this source code is governed by a ALv2-style
// license that can be found in the LICENSE file.
package gocqlx package gocqlx
import ( import (

View File

@@ -1,3 +1,7 @@
// Copyright (C) 2017 ScyllaDB
// Use of this source code is governed by a ALv2-style
// license that can be found in the LICENSE file.
// +build all integration // +build all integration
package gocqlx_test package gocqlx_test

View File

@@ -1,3 +1,7 @@
// Copyright (C) 2017 ScyllaDB
// Use of this source code is governed by a ALv2-style
// license that can be found in the LICENSE file.
package gocqlx package gocqlx
import ( import (

View File

@@ -1,3 +1,7 @@
// Copyright (C) 2017 ScyllaDB
// Use of this source code is governed by a ALv2-style
// license that can be found in the LICENSE file.
package gocqlx package gocqlx
import ( import (

View File

@@ -1,3 +1,7 @@
// Copyright (C) 2017 ScyllaDB
// Use of this source code is governed by a ALv2-style
// license that can be found in the LICENSE file.
// +build !integration // +build !integration
package gocqlx package gocqlx

View File

@@ -1,3 +1,7 @@
// Copyright (C) 2017 ScyllaDB
// Use of this source code is governed by a ALv2-style
// license that can be found in the LICENSE file.
package qb package qb
import ( import (

View File

@@ -1,3 +1,7 @@
// Copyright (C) 2017 ScyllaDB
// Use of this source code is governed by a ALv2-style
// license that can be found in the LICENSE file.
package qb package qb
import ( import (

View File

@@ -1,3 +1,7 @@
// Copyright (C) 2017 ScyllaDB
// Use of this source code is governed by a ALv2-style
// license that can be found in the LICENSE file.
package qb package qb
// Functions reference: // Functions reference:

View File

@@ -1,3 +1,7 @@
// Copyright (C) 2017 ScyllaDB
// Use of this source code is governed by a ALv2-style
// license that can be found in the LICENSE file.
package qb package qb
import ( import (

View File

@@ -1,3 +1,7 @@
// Copyright (C) 2017 ScyllaDB
// Use of this source code is governed by a ALv2-style
// license that can be found in the LICENSE file.
package qb package qb
// DELETE reference: // DELETE reference:

View File

@@ -1,3 +1,7 @@
// Copyright (C) 2017 ScyllaDB
// Use of this source code is governed by a ALv2-style
// license that can be found in the LICENSE file.
package qb package qb
import ( import (

View File

@@ -1,3 +1,7 @@
// Copyright (C) 2017 ScyllaDB
// Use of this source code is governed by a ALv2-style
// license that can be found in the LICENSE file.
// Package qb provides CQL query builders. The builders create CQL statement // Package qb provides CQL query builders. The builders create CQL statement
// and a list of named parameters that can later be bound using // and a list of named parameters that can later be bound using
// github.com/scylladb/gocqlx. // github.com/scylladb/gocqlx.

View File

@@ -1,3 +1,7 @@
// Copyright (C) 2017 ScyllaDB
// Use of this source code is governed by a ALv2-style
// license that can be found in the LICENSE file.
package qb package qb
import ( import (

View File

@@ -1,3 +1,7 @@
// Copyright (C) 2017 ScyllaDB
// Use of this source code is governed by a ALv2-style
// license that can be found in the LICENSE file.
package qb package qb
// INSERT reference: // INSERT reference:

View File

@@ -1,3 +1,7 @@
// Copyright (C) 2017 ScyllaDB
// Use of this source code is governed by a ALv2-style
// license that can be found in the LICENSE file.
package qb package qb
import ( import (

View File

@@ -1,3 +1,7 @@
// Copyright (C) 2017 ScyllaDB
// Use of this source code is governed by a ALv2-style
// license that can be found in the LICENSE file.
package qb package qb
// Builder is interface implemented by all the builders. // Builder is interface implemented by all the builders.

View File

@@ -1,3 +1,7 @@
// Copyright (C) 2017 ScyllaDB
// Use of this source code is governed by a ALv2-style
// license that can be found in the LICENSE file.
package qb package qb
// SELECT reference: // SELECT reference:

View File

@@ -1,3 +1,7 @@
// Copyright (C) 2017 ScyllaDB
// Use of this source code is governed by a ALv2-style
// license that can be found in the LICENSE file.
package qb package qb
import ( import (

View File

@@ -1,3 +1,7 @@
// Copyright (C) 2017 ScyllaDB
// Use of this source code is governed by a ALv2-style
// license that can be found in the LICENSE file.
package qb package qb
import ( import (

View File

@@ -1,3 +1,7 @@
// Copyright (C) 2017 ScyllaDB
// Use of this source code is governed by a ALv2-style
// license that can be found in the LICENSE file.
package qb package qb
import ( import (

View File

@@ -1,3 +1,7 @@
// Copyright (C) 2017 ScyllaDB
// Use of this source code is governed by a ALv2-style
// license that can be found in the LICENSE file.
package qb package qb
// UPDATE reference: // UPDATE reference:

View File

@@ -1,3 +1,7 @@
// Copyright (C) 2017 ScyllaDB
// Use of this source code is governed by a ALv2-style
// license that can be found in the LICENSE file.
package qb package qb
import ( import (

View File

@@ -1,3 +1,7 @@
// Copyright (C) 2017 ScyllaDB
// Use of this source code is governed by a ALv2-style
// license that can be found in the LICENSE file.
package qb package qb
import ( import (

View File

@@ -1,3 +1,7 @@
// Copyright (C) 2017 ScyllaDB
// Use of this source code is governed by a ALv2-style
// license that can be found in the LICENSE file.
package qb package qb
import ( import (

View File

@@ -1,3 +1,7 @@
// Copyright (C) 2017 ScyllaDB
// Use of this source code is governed by a ALv2-style
// license that can be found in the LICENSE file.
package gocqlx package gocqlx
import ( import (

View File

@@ -1,3 +1,7 @@
// Copyright (C) 2017 ScyllaDB
// Use of this source code is governed by a ALv2-style
// license that can be found in the LICENSE file.
// +build !integration // +build !integration
package gocqlx package gocqlx