mirror of
https://github.com/ouchadam/small-talk.git
synced 2025-01-09 08:32:54 +01:00
128c2db432
- add a chat-engine abstraction - create a matrix-chat-engine implementation - starts by porting the initial creation and directory listing
12 lines
294 B
Groovy
12 lines
294 B
Groovy
plugins {
|
|
id 'kotlin'
|
|
}
|
|
|
|
dependencies {
|
|
api Dependencies.mavenCentral.kotlinCoroutinesCore
|
|
api project(":matrix:common")
|
|
|
|
implementation project(":matrix:services:sync")
|
|
implementation project(":matrix:services:message")
|
|
implementation project(":matrix:services:room")
|
|
} |