Skip to content

Commit 6590bec

Browse files
chore: pass provider to app
1 parent 4703808 commit 6590bec

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/main/kotlin/App.kt

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,12 @@
77
*/
88

99
import infrastructure.api.APIController
10+
import infrastructure.provider.ManagerProviderImpl
1011

1112
/**
1213
* Template for kotlin projects.
1314
*/
1415
fun main() {
15-
APIController().start()
16+
val provider = ManagerProviderImpl()
17+
APIController(provider).start()
1618
}

0 commit comments

Comments
 (0)