Skip to content
This repository has been archived by the owner on Oct 23, 2023. It is now read-only.

Commit

Permalink
feat(access): create interface remote data storage for access
Browse files Browse the repository at this point in the history
  • Loading branch information
AndreaBrighi committed Apr 28, 2023
1 parent 4a59047 commit 5a57abf
Showing 1 changed file with 10 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
package com.intelligentbackpack.accessdata.datasource

import com.intelligentbackpack.accessdomain.entities.User

interface AccessRemoteDataStorage {

fun createUser(user: User): User

fun accessWithData(username: String, password: String) : User
}

0 comments on commit 5a57abf

Please sign in to comment.