mirror of
https://github.com/diamondburned/arikawa.git
synced 2025-09-04 12:47:54 +00:00
7 lines
187 B
Go
7 lines
187 B
Go
|
// Package kvstore defines basic key-value interfaces for the state. It uses a
|
||
|
// handling layer for storing inside any key-value databases.
|
||
|
package kvstore
|
||
|
|
||
|
type MessageStore struct {
|
||
|
}
|