Browse Source

fixed license header

Julien Schmidt 13 years ago
parent
commit
04d9043ca3
9 changed files with 9 additions and 0 deletions
  1. 1 0
      connection.go
  2. 1 0
      const.go
  3. 1 0
      driver.go
  4. 1 0
      packets.go
  5. 1 0
      result.go
  6. 1 0
      rows.go
  7. 1 0
      statement.go
  8. 1 0
      transaction.go
  9. 1 0
      utils.go

+ 1 - 0
connection.go

@@ -6,6 +6,7 @@
 // This Source Code Form is subject to the terms of the Mozilla Public
 // License, v. 2.0. If a copy of the MPL was not distributed with this file,
 // You can obtain one at http://mozilla.org/MPL/2.0/.
+
 package mysql
 
 import (

+ 1 - 0
const.go

@@ -6,6 +6,7 @@
 // This Source Code Form is subject to the terms of the Mozilla Public
 // License, v. 2.0. If a copy of the MPL was not distributed with this file,
 // You can obtain one at http://mozilla.org/MPL/2.0/.
+
 package mysql
 
 // Constants documentation:

+ 1 - 0
driver.go

@@ -6,6 +6,7 @@
 // This Source Code Form is subject to the terms of the Mozilla Public
 // License, v. 2.0. If a copy of the MPL was not distributed with this file,
 // You can obtain one at http://mozilla.org/MPL/2.0/.
+
 package mysql
 
 import (

+ 1 - 0
packets.go

@@ -6,6 +6,7 @@
 // This Source Code Form is subject to the terms of the Mozilla Public
 // License, v. 2.0. If a copy of the MPL was not distributed with this file,
 // You can obtain one at http://mozilla.org/MPL/2.0/.
+
 package mysql
 
 import (

+ 1 - 0
result.go

@@ -6,6 +6,7 @@
 // This Source Code Form is subject to the terms of the Mozilla Public
 // License, v. 2.0. If a copy of the MPL was not distributed with this file,
 // You can obtain one at http://mozilla.org/MPL/2.0/.
+
 package mysql
 
 type mysqlResult struct {

+ 1 - 0
rows.go

@@ -6,6 +6,7 @@
 // This Source Code Form is subject to the terms of the Mozilla Public
 // License, v. 2.0. If a copy of the MPL was not distributed with this file,
 // You can obtain one at http://mozilla.org/MPL/2.0/.
+
 package mysql
 
 import (

+ 1 - 0
statement.go

@@ -6,6 +6,7 @@
 // This Source Code Form is subject to the terms of the Mozilla Public
 // License, v. 2.0. If a copy of the MPL was not distributed with this file,
 // You can obtain one at http://mozilla.org/MPL/2.0/.
+
 package mysql
 
 import (

+ 1 - 0
transaction.go

@@ -6,6 +6,7 @@
 // This Source Code Form is subject to the terms of the Mozilla Public
 // License, v. 2.0. If a copy of the MPL was not distributed with this file,
 // You can obtain one at http://mozilla.org/MPL/2.0/.
+
 package mysql
 
 type mysqlTx struct {

+ 1 - 0
utils.go

@@ -6,6 +6,7 @@
 // This Source Code Form is subject to the terms of the Mozilla Public
 // License, v. 2.0. If a copy of the MPL was not distributed with this file,
 // You can obtain one at http://mozilla.org/MPL/2.0/.
+
 package mysql
 
 import (