projects
/
Sone.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
✨ Allow activateDebugMode() to be called multiple times
[Sone.git]
/
src
/
main
/
kotlin
/
net
/
pterodactylus
/
sone
/
database
/
SoneBuilderFactory.kt
1
package net.pterodactylus.sone.database
2
3
/**
4
* Factory for [SoneBuilder]s.
5
*/
6
interface SoneBuilderFactory {
7
8
fun newSoneBuilder(): SoneBuilder
9
10
}