Skip to content

Commit 4eb5ee1

Browse files
committed
move some things to ext-utils
1 parent a142f96 commit 4eb5ee1

File tree

14 files changed

+28
-19
lines changed

14 files changed

+28
-19
lines changed

ext-utils/build.gradle.kts

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
plugins {
2+
kotlin("jvm")
3+
kotlin("plugin.serialization")
4+
}
5+
6+
dependencies {
7+
implementation(libs.kotlinx.serialization.json)
8+
implementation(libs.kotlinx.coroutines)
9+
}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package dev.fruxz.ascend.tool.map
1+
package dev.fruxz.tool.map
22

33
/**
44
* This class represents a map of collections of type [C].

core/src/tool/map/MutableCollectionMap.kt renamed to ext-utils/src/tool/map/MutableCollectionMap.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package dev.fruxz.ascend.tool.map
1+
package dev.fruxz.tool.map
22

33
/**
44
* This class represents a mutable map of collections of type [C].
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
package dev.fruxz.ascend.tool.map.list
1+
package dev.fruxz.tool.map.list
22

3-
import dev.fruxz.ascend.tool.map.CollectionMap
3+
import dev.fruxz.tool.map.CollectionMap
44

55
/**
66
* This class represents a map of [List]s.

core/src/tool/map/list/MutableListMap.kt renamed to ext-utils/src/tool/map/list/MutableListMap.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
package dev.fruxz.ascend.tool.map.list
1+
package dev.fruxz.tool.map.list
22

3-
import dev.fruxz.ascend.tool.map.MutableCollectionMap
3+
import dev.fruxz.tool.map.MutableCollectionMap
44

55
/**
66
* This class represents a mutable map of [List]s.

core/src/tool/map/set/MutableSetMap.kt renamed to ext-utils/src/tool/map/set/MutableSetMap.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
package dev.fruxz.ascend.tool.map.set
1+
package dev.fruxz.tool.map.set
22

3-
import dev.fruxz.ascend.tool.map.MutableCollectionMap
3+
import dev.fruxz.tool.map.MutableCollectionMap
44

55
/**
66
* This class represents a map of [Set]s.
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
package dev.fruxz.ascend.tool.map.set
1+
package dev.fruxz.tool.map.set
22

3-
import dev.fruxz.ascend.tool.map.CollectionMap
4-
import dev.fruxz.ascend.tool.map.MutableCollectionMap
3+
import dev.fruxz.tool.map.CollectionMap
4+
import dev.fruxz.tool.map.MutableCollectionMap
55

66
/**
77
* This class represents a map of [Set]s.

core/src/tool/smart/identity/Identity.kt renamed to ext-utils/src/tool/smart/identity/Identity.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package dev.fruxz.ascend.tool.smart.identity
1+
package dev.fruxz.tool.smart.identity
22

33
import kotlinx.serialization.Serializable
44

core/src/tool/smart/identity/IdentitySchematic.kt renamed to ext-utils/src/tool/smart/identity/IdentitySchematic.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package dev.fruxz.ascend.tool.smart.identity
1+
package dev.fruxz.tool.smart.identity
22

33
interface IdentitySchematic<T> {
44

core/src/tool/smart/identity/RelatedIdentity.kt renamed to ext-utils/src/tool/smart/identity/RelatedIdentity.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package dev.fruxz.ascend.tool.smart.identity
1+
package dev.fruxz.tool.smart.identity
22

33
import kotlinx.serialization.Serializable
44

0 commit comments

Comments
 (0)