♻️ Copy session-handling code to FreenetRequest
[Sone.git] / src / main / kotlin / net / pterodactylus / sone / database / SoneStore.kt
1 package net.pterodactylus.sone.database
2
3 import net.pterodactylus.sone.data.Sone
4
5 /**
6  * Interface for a store for [Sone]s.
7  */
8 interface SoneStore {
9
10         fun storeSone(sone: Sone)
11         fun removeSone(sone: Sone)
12
13 }