projects
/
Sone.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
♻️ Move constants out of the class
[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
}