Created
June 23, 2021 11:10
-
-
Save gabriel-TheCode/8d1df0a395f2da4b627635a1817f4d63 to your computer and use it in GitHub Desktop.
Blog Database
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @Database(entities = [BlogCacheEntity::class], version = 1) | |
| abstract class BlogDatabase : RoomDatabase() { | |
| abstract fun blogDao(): BlogDao | |
| companion object { | |
| const val DATABASE_NAME: String = "blog_db" | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment