Skip to content

Commit a3ec094

Browse files
committed
📦 NEW: implement remote data source
Signed-off-by: Jonas Sulzer <jonas@violoncello.ch>
1 parent 9597aa9 commit a3ec094

File tree

1 file changed

+9
-0
lines changed
  • app/src/main/java/com/github/swent/echo/data/repository/datasources

1 file changed

+9
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
package com.github.swent.echo.data.repository.datasources
2+
3+
import io.github.jan.supabase.SupabaseClient
4+
5+
class Supabase(supabaseClient: SupabaseClient) : RemoteDataSource {
6+
override fun getRemoteData(): String {
7+
TODO("Not yet implemented")
8+
}
9+
}

0 commit comments

Comments
 (0)