12 lines
236 B
Go
12 lines
236 B
Go
|
// Copyright 20190 The Xorm Authors. All rights reserved.
|
||
|
// Use of this source code is governed by a BSD-style
|
||
|
// license that can be found in the LICENSE file.
|
||
|
|
||
|
// +build oracle
|
||
|
|
||
|
package xorm
|
||
|
|
||
|
import (
|
||
|
_ "github.com/mattn/go-oci8"
|
||
|
)
|