Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions odpi/embed/require.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
// Copyright 2020 The Godror Authors
//
// SPDX-License-Identifier: UPL-1.0 OR Apache-2.0

// +build require

// Package embed contains required external dependencies from ODPI-C
package embed
8 changes: 8 additions & 0 deletions odpi/include/require.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
// Copyright 2020 The Godror Authors
//
// SPDX-License-Identifier: UPL-1.0 OR Apache-2.0

// +build require

// Package include contains required external dependencies from ODPI-C
package include
8 changes: 8 additions & 0 deletions odpi/src/require.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
// Copyright 2020 The Godror Authors
//
// SPDX-License-Identifier: UPL-1.0 OR Apache-2.0

// +build require

// Package src contains required external dependencies from ODPI-C
package src
13 changes: 13 additions & 0 deletions require.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
// Copyright 2020 The Godror Authors
//
// SPDX-License-Identifier: UPL-1.0 OR Apache-2.0

// +build require

package godror

import (
_ "github.com/godror/godror/odpi/embed" // ODPI-C
_ "github.com/godror/godror/odpi/include" // ODPI-C
_ "github.com/godror/godror/odpi/src" // ODPI-C
)