Skip to content

Commit

Permalink
initial package move
Browse files Browse the repository at this point in the history
  • Loading branch information
sanity committed Mar 16, 2020
1 parent e07f093 commit 91fa6a0
Show file tree
Hide file tree
Showing 18 changed files with 22 additions and 20 deletions.
3 changes: 3 additions & 0 deletions .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
package io.kweb.shoebox
package kweb.shoebox

data class KeyValue<V>(val key: String, val value: V)
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
package io.kweb.shoebox
package kweb.shoebox

import io.kweb.shoebox.BinarySearchResult.*
import java.util.concurrent.ConcurrentHashMap
import java.util.concurrent.CopyOnWriteArrayList
import kweb.shoebox.BinarySearchResult.*
import java.util.concurrent.*

/**
* Created by ian on 3/14/17.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package io.kweb.shoebox
package kweb.shoebox

import io.kweb.shoebox.Source.LOCAL
import io.kweb.shoebox.View.*
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package io.kweb.shoebox
package kweb.shoebox

/**
* Created by ian on 3/22/17.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package io.kweb.shoebox
package kweb.shoebox

import io.kweb.shoebox.Source.LOCAL
import io.kweb.shoebox.View.VerifyBehavior.*
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package io.kweb.shoebox.samples
package kweb.shoebox.samples

import io.kweb.shoebox.Shoebox
import io.kweb.shoebox.View
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package io.kweb.shoebox.stores
package kweb.shoebox.stores

import com.fatboyindustrial.gsonjavatime.Converters
import com.google.common.cache.*
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package io.kweb.shoebox.stores
package kweb.shoebox.stores

import com.fatboyindustrial.gsonjavatime.Converters
import com.google.gson.*
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package io.kweb.shoebox.stores
package kweb.shoebox.stores

import io.kweb.shoebox.KeyValue
import io.kweb.shoebox.Store
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package io.kweb.shoebox
package kweb.shoebox

import com.google.gson.*
import io.kweb.shoebox.BinarySearchResult.*
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package io.kweb.shoebox
package kweb.shoebox

import io.kotlintest.matchers.*
import io.kotlintest.specs.FreeSpec
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package io.kweb.shoebox
package kweb.shoebox

import io.kweb.shoebox.stores.MemoryStore
import io.kotlintest.matchers.shouldBe
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package io.kweb.shoebox
package kweb.shoebox

import io.kotlintest.specs.FreeSpec
import java.nio.file.Files
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package io.kweb.shoebox
package kweb.shoebox

import io.kweb.shoebox.data.Gender.FEMALE
import io.kweb.shoebox.data.Gender.MALE
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package io.kweb.shoebox.data
package kweb.shoebox.data

enum class Gender {
MALE, FEMALE
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
package io.kweb.shoebox.data
package kweb.shoebox.data

data class User(val name : String, val gender : Gender)
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package io.kweb.shoebox.stores
package kweb.shoebox.stores

import io.kotlintest.matchers.*
import io.kotlintest.specs.FreeSpec
Expand Down

0 comments on commit 91fa6a0

Please sign in to comment.