Skip to content

Commit

Permalink
(unrelated) Add code folding suggestion to be able to fold methods
Browse files Browse the repository at this point in the history
  • Loading branch information
PattaFeuFeu committed Dec 16, 2023
1 parent 0645905 commit 0fb76ce
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion bigbone/src/main/kotlin/social/bigbone/MastodonClient.kt
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,7 @@ private constructor(
private val streamingUrl: String? = null
) {

//region API methods
/**
* Access API methods under the "accounts" endpoint.
*/
Expand Down Expand Up @@ -360,6 +361,7 @@ private constructor(
@Suppress("unused") // public API
@get:JvmName("trends")
val trends: TrendMethods by lazy { TrendMethods(this) }
//endregion API methods

/**
* Specifies the HTTP methods / HTTP verb that can be used by this class.
Expand All @@ -380,7 +382,6 @@ private constructor(

fun getPort() = port


/**
* Returns a MastodonRequest for the defined action, allowing to retrieve returned data.
* @param T
Expand Down

0 comments on commit 0fb76ce

Please sign in to comment.