Refactor SampleEntity to BinaryEntity and update related files and queries

This commit is contained in:
2025-06-10 19:46:19 +02:00
parent 4d7c46093c
commit 3746ced387
4 changed files with 9 additions and 4 deletions

View File

@@ -0,0 +1,11 @@
package nl.astraeus.vst.base.db
object BinaryDao {
val queryProvider = SampleEntityQueryProvider
fun getSample(waveHash: String): ByteArray {
return byteArrayOf()
}
}