Skip to content

Commit

Permalink
Lazy. Add LazyItemFactory
Browse files Browse the repository at this point in the history
  • Loading branch information
turansky committed Sep 16, 2024
1 parent 22c7601 commit 9be8ea1
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
package seskar.gradle.plugin

data class LazyItem(
val imports: String? = null,
val body: String
)
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
package seskar.gradle.plugin

interface LazyItemFactory {
fun create(
source: String,
): LazyItem?
}

0 comments on commit 9be8ea1

Please sign in to comment.