refactor: 不要な関数を削除

This commit is contained in:
2023-08-10 19:23:42 +09:00
parent 3257ebccfc
commit bf2994fbf6
@@ -7,16 +7,12 @@ import dev.usbharu.hideout.domain.model.hideout.entity.User
@Suppress("TooManyFunctions")
interface IUserService {
suspend fun findByUrls(urls: List<String>): List<User>
suspend fun usernameAlreadyUse(username: String): Boolean
suspend fun createLocalUser(user: UserCreateDto): User
suspend fun createRemoteUser(user: RemoteUserCreateDto): User
suspend fun findFollowersById(id: Long): List<User>
/**
* フォローリクエストを送信する
*