* add ktlint plugin to project and apply default code style * some manual adjustments, fix wildcard imports * update CONTRIBUTING.md * fix formatting
11 lines
241 B
Kotlin
11 lines
241 B
Kotlin
package com.keylesspalace.tusky.interfaces
|
|
|
|
/**
|
|
* Created by pandasoft (joelpyska1@gmail.com) on 04/04/2019.
|
|
*/
|
|
interface RefreshableFragment {
|
|
/**
|
|
* Call this method to refresh fragment content
|
|
*/
|
|
fun refreshContent()
|
|
}
|