This commit is contained in:
2026-03-30 11:26:33 -04:00
parent 533dc1ba14
commit 1fe72401f0
1655 changed files with 531 additions and 45407 deletions

View File

@@ -0,0 +1,12 @@
package com.rssuper.services
import okhttp3.Credentials
data class HTTPAuthCredentials(
val username: String,
val password: String
) {
fun toCredentials(): String {
return Credentials.basic(username, password)
}
}