diff options
| author | ketsuban <ketsuban@192.168.3.110> | 2026-08-25 22:03:33 +0000 |
|---|---|---|
| committer | ketsuban <ketsuban@192.168.3.110> | 2026-08-25 22:03:33 +0000 |
| commit | 001aa16c6b6e0c7e071ebd3a4f6386bf050c4e67 (patch) | |
| tree | ec899c269937342646d16fe9f1e9ee5a35b0d7f2 /modules | |
| parent | 53b0e992b2cbdfed1424139bd5b793a2d275ecca (diff) | |
| download | kukuri-001aa16c6b6e0c7e071ebd3a4f6386bf050c4e67.tar.gz kukuri-001aa16c6b6e0c7e071ebd3a4f6386bf050c4e67.tar.bz2 kukuri-001aa16c6b6e0c7e071ebd3a4f6386bf050c4e67.zip | |
Force-correct package declarations in content-store mains
Diffstat (limited to 'modules')
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 = |
