Skip to content

Commit

Permalink
refactor to use package
Browse files Browse the repository at this point in the history
  • Loading branch information
mythz committed Dec 30, 2020
1 parent af9df6a commit ed83221
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ Simple usage example:
import com.google.gson.Gson
import com.google.gson.annotations.SerializedName
import java.net.URL
import net.servicestack.gistcafe.*

data class GithubRepo(
val name: String,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
package net.servicestack.gistcafe

import com.google.gson.Gson
import com.google.gson.GsonBuilder
import com.google.gson.reflect.TypeToken
Expand Down
3 changes: 2 additions & 1 deletion src/test/kotlin/InspectTest.kt
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
import org.junit.jupiter.api.Test
import com.google.gson.Gson
import com.google.gson.annotations.SerializedName
import org.junit.jupiter.api.Test
import java.net.URL
import net.servicestack.gistcafe.*

data class GithubRepo(
val name: String,
Expand Down

0 comments on commit ed83221

Please sign in to comment.