summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorketsuban <ketsuban@192.168.3.110>2026-08-25 22:03:33 +0000
committerketsuban <ketsuban@192.168.3.110>2026-08-25 22:03:33 +0000
commit001aa16c6b6e0c7e071ebd3a4f6386bf050c4e67 (patch)
treeec899c269937342646d16fe9f1e9ee5a35b0d7f2 /modules
parent53b0e992b2cbdfed1424139bd5b793a2d275ecca (diff)
downloadkukuri-001aa16c6b6e0c7e071ebd3a4f6386bf050c4e67.tar.gz
kukuri-001aa16c6b6e0c7e071ebd3a4f6386bf050c4e67.tar.bz2
kukuri-001aa16c6b6e0c7e071ebd3a4f6386bf050c4e67.zip
Force-correct package declarations in content-store mains
Diffstat (limited to 'modules')
-rw-r--r--modules/orgflow-content-store/src/commonMain/kotlin/jp/orgflow/contentstore/BlockStore.kt2
-rw-r--r--modules/orgflow-content-store/src/commonMain/kotlin/jp/orgflow/contentstore/Cid.kt2
-rw-r--r--modules/orgflow-content-store/src/commonMain/kotlin/jp/orgflow/contentstore/ContentAddresser.kt2
-rw-r--r--modules/orgflow-content-store/src/commonMain/kotlin/jp/orgflow/contentstore/ContentBlock.kt2
4 files changed, 4 insertions, 4 deletions
diff --git a/modules/orgflow-content-store/src/commonMain/kotlin/jp/orgflow/contentstore/BlockStore.kt b/modules/orgflow-content-store/src/commonMain/kotlin/jp/orgflow/contentstore/BlockStore.kt
index d4d5754..7d1e984 100644
--- a/modules/orgflow-content-store/src/commonMain/kotlin/jp/orgflow/contentstore/BlockStore.kt
+++ b/modules/orgflow-content-store/src/commonMain/kotlin/jp/orgflow/contentstore/BlockStore.kt
@@ -1,4 +1,4 @@
-package jp.orgflow.contentstore.contentstore
+package jp.orgflow.contentstore
interface BlockStore {
suspend fun put(block: ContentBlock)
diff --git a/modules/orgflow-content-store/src/commonMain/kotlin/jp/orgflow/contentstore/Cid.kt b/modules/orgflow-content-store/src/commonMain/kotlin/jp/orgflow/contentstore/Cid.kt
index cd9eb83..2b12829 100644
--- a/modules/orgflow-content-store/src/commonMain/kotlin/jp/orgflow/contentstore/Cid.kt
+++ b/modules/orgflow-content-store/src/commonMain/kotlin/jp/orgflow/contentstore/Cid.kt
@@ -1,4 +1,4 @@
-package jp.orgflow.contentstore.contentstore
+package jp.orgflow.contentstore
data class Cid(val codec: String, val hashHex: String) {
override fun toString(): String = "$codec:$hashHex"
diff --git a/modules/orgflow-content-store/src/commonMain/kotlin/jp/orgflow/contentstore/ContentAddresser.kt b/modules/orgflow-content-store/src/commonMain/kotlin/jp/orgflow/contentstore/ContentAddresser.kt
index 0774cbb..8cb3733 100644
--- a/modules/orgflow-content-store/src/commonMain/kotlin/jp/orgflow/contentstore/ContentAddresser.kt
+++ b/modules/orgflow-content-store/src/commonMain/kotlin/jp/orgflow/contentstore/ContentAddresser.kt
@@ -1,4 +1,4 @@
-package jp.orgflow.contentstore.contentstore
+package jp.orgflow.contentstore
import okio.Buffer
import okio.HashingSink
diff --git a/modules/orgflow-content-store/src/commonMain/kotlin/jp/orgflow/contentstore/ContentBlock.kt b/modules/orgflow-content-store/src/commonMain/kotlin/jp/orgflow/contentstore/ContentBlock.kt
index 61e33d9..85973d0 100644
--- a/modules/orgflow-content-store/src/commonMain/kotlin/jp/orgflow/contentstore/ContentBlock.kt
+++ b/modules/orgflow-content-store/src/commonMain/kotlin/jp/orgflow/contentstore/ContentBlock.kt
@@ -1,4 +1,4 @@
-package jp.orgflow.contentstore.contentstore
+package jp.orgflow.contentstore
class ContentBlock(val cid: Cid, val bytes: ByteArray) {
override fun equals(other: Any?): Boolean =