diff options
author | EuAndreh <eu@euandre.org> | 2024-10-25 10:19:35 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2024-10-25 10:19:35 -0300 |
commit | e7905fdf275fbb520de97df1eccdcd20e3d9aa6f (patch) | |
tree | d211118bf0c7bb20415367765f5eda66c8bdec86 | |
parent | Merge pull request #748 from Chyroc/add/tx-copy-deprecated (diff) | |
download | dedo-e7905fdf275fbb520de97df1eccdcd20e3d9aa6f.tar.gz dedo-e7905fdf275fbb520de97df1eccdcd20e3d9aa6f.tar.xz |
Move code to src/ and tests/
-rw-r--r-- | src/bolt_386.go (renamed from bolt_386.go) | 0 | ||||
-rw-r--r-- | src/bolt_amd64.go (renamed from bolt_amd64.go) | 0 | ||||
-rw-r--r-- | src/bolt_arm.go (renamed from bolt_arm.go) | 0 | ||||
-rw-r--r-- | src/bolt_arm64.go (renamed from bolt_arm64.go) | 0 | ||||
-rw-r--r-- | src/bolt_linux.go (renamed from bolt_linux.go) | 0 | ||||
-rw-r--r-- | src/bolt_openbsd.go (renamed from bolt_openbsd.go) | 0 | ||||
-rw-r--r-- | src/bolt_ppc.go (renamed from bolt_ppc.go) | 0 | ||||
-rw-r--r-- | src/bolt_ppc64.go (renamed from bolt_ppc64.go) | 0 | ||||
-rw-r--r-- | src/bolt_ppc64le.go (renamed from bolt_ppc64le.go) | 0 | ||||
-rw-r--r-- | src/bolt_s390x.go (renamed from bolt_s390x.go) | 0 | ||||
-rw-r--r-- | src/bolt_unix.go (renamed from bolt_unix.go) | 0 | ||||
-rw-r--r-- | src/bolt_unix_solaris.go (renamed from bolt_unix_solaris.go) | 0 | ||||
-rw-r--r-- | src/bolt_windows.go (renamed from bolt_windows.go) | 0 | ||||
-rw-r--r-- | src/boltsync_unix.go (renamed from boltsync_unix.go) | 0 | ||||
-rw-r--r-- | src/bucket.go (renamed from bucket.go) | 0 | ||||
-rw-r--r-- | src/cursor.go (renamed from cursor.go) | 0 | ||||
-rw-r--r-- | src/db.go (renamed from db.go) | 0 | ||||
-rw-r--r-- | src/doc.go (renamed from doc.go) | 0 | ||||
-rw-r--r-- | src/errors.go (renamed from errors.go) | 0 | ||||
-rw-r--r-- | src/freelist.go (renamed from freelist.go) | 0 | ||||
-rw-r--r-- | src/node.go (renamed from node.go) | 0 | ||||
-rw-r--r-- | src/page.go (renamed from page.go) | 0 | ||||
-rw-r--r-- | src/tx.go (renamed from tx.go) | 0 | ||||
-rw-r--r-- | tests/bucket_test.go (renamed from bucket_test.go) | 0 | ||||
-rw-r--r-- | tests/cursor_test.go (renamed from cursor_test.go) | 0 | ||||
-rw-r--r-- | tests/db_test.go (renamed from db_test.go) | 0 | ||||
-rw-r--r-- | tests/freelist_test.go (renamed from freelist_test.go) | 0 | ||||
-rw-r--r-- | tests/node_test.go (renamed from node_test.go) | 0 | ||||
-rw-r--r-- | tests/page_test.go (renamed from page_test.go) | 0 | ||||
-rw-r--r-- | tests/quick_test.go (renamed from quick_test.go) | 0 | ||||
-rw-r--r-- | tests/simulation_test.go (renamed from simulation_test.go) | 0 | ||||
-rw-r--r-- | tests/tx_test.go (renamed from tx_test.go) | 0 |
32 files changed, 0 insertions, 0 deletions
diff --git a/bolt_386.go b/src/bolt_386.go index 820d533..820d533 100644 --- a/bolt_386.go +++ b/src/bolt_386.go diff --git a/bolt_amd64.go b/src/bolt_amd64.go index 98fafdb..98fafdb 100644 --- a/bolt_amd64.go +++ b/src/bolt_amd64.go diff --git a/bolt_arm.go b/src/bolt_arm.go index 7e5cb4b..7e5cb4b 100644 --- a/bolt_arm.go +++ b/src/bolt_arm.go diff --git a/bolt_arm64.go b/src/bolt_arm64.go index b26d84f..b26d84f 100644 --- a/bolt_arm64.go +++ b/src/bolt_arm64.go diff --git a/bolt_linux.go b/src/bolt_linux.go index 2b67666..2b67666 100644 --- a/bolt_linux.go +++ b/src/bolt_linux.go diff --git a/bolt_openbsd.go b/src/bolt_openbsd.go index 7058c3d..7058c3d 100644 --- a/bolt_openbsd.go +++ b/src/bolt_openbsd.go diff --git a/bolt_ppc.go b/src/bolt_ppc.go index 645ddc3..645ddc3 100644 --- a/bolt_ppc.go +++ b/src/bolt_ppc.go diff --git a/bolt_ppc64.go b/src/bolt_ppc64.go index 9331d97..9331d97 100644 --- a/bolt_ppc64.go +++ b/src/bolt_ppc64.go diff --git a/bolt_ppc64le.go b/src/bolt_ppc64le.go index 8c143bc..8c143bc 100644 --- a/bolt_ppc64le.go +++ b/src/bolt_ppc64le.go diff --git a/bolt_s390x.go b/src/bolt_s390x.go index d7c39af..d7c39af 100644 --- a/bolt_s390x.go +++ b/src/bolt_s390x.go diff --git a/bolt_unix.go b/src/bolt_unix.go index cad62dd..cad62dd 100644 --- a/bolt_unix.go +++ b/src/bolt_unix.go diff --git a/bolt_unix_solaris.go b/src/bolt_unix_solaris.go index 307bf2b..307bf2b 100644 --- a/bolt_unix_solaris.go +++ b/src/bolt_unix_solaris.go diff --git a/bolt_windows.go b/src/bolt_windows.go index b00fb07..b00fb07 100644 --- a/bolt_windows.go +++ b/src/bolt_windows.go diff --git a/boltsync_unix.go b/src/boltsync_unix.go index f504425..f504425 100644 --- a/boltsync_unix.go +++ b/src/boltsync_unix.go diff --git a/bucket.go b/src/bucket.go index 0c5bf27..0c5bf27 100644 --- a/bucket.go +++ b/src/bucket.go diff --git a/cursor.go b/src/cursor.go index 1be9f35..1be9f35 100644 --- a/cursor.go +++ b/src/cursor.go diff --git a/errors.go b/src/errors.go index a3620a3..a3620a3 100644 --- a/errors.go +++ b/src/errors.go diff --git a/freelist.go b/src/freelist.go index aba48f5..aba48f5 100644 --- a/freelist.go +++ b/src/freelist.go diff --git a/bucket_test.go b/tests/bucket_test.go index cddbe27..cddbe27 100644 --- a/bucket_test.go +++ b/tests/bucket_test.go diff --git a/cursor_test.go b/tests/cursor_test.go index 562d60f..562d60f 100644 --- a/cursor_test.go +++ b/tests/cursor_test.go diff --git a/db_test.go b/tests/db_test.go index 3034d4f..3034d4f 100644 --- a/db_test.go +++ b/tests/db_test.go diff --git a/freelist_test.go b/tests/freelist_test.go index 4e9b3a8..4e9b3a8 100644 --- a/freelist_test.go +++ b/tests/freelist_test.go diff --git a/node_test.go b/tests/node_test.go index fa5d10f..fa5d10f 100644 --- a/node_test.go +++ b/tests/node_test.go diff --git a/page_test.go b/tests/page_test.go index 59f4a30..59f4a30 100644 --- a/page_test.go +++ b/tests/page_test.go diff --git a/quick_test.go b/tests/quick_test.go index 9e27792..9e27792 100644 --- a/quick_test.go +++ b/tests/quick_test.go diff --git a/simulation_test.go b/tests/simulation_test.go index 3831016..3831016 100644 --- a/simulation_test.go +++ b/tests/simulation_test.go diff --git a/tx_test.go b/tests/tx_test.go index 2201e79..2201e79 100644 --- a/tx_test.go +++ b/tests/tx_test.go |