2021-01-26 23:36:53 +08:00
|
|
|
// Copyright 2020 The Gitea Authors. All rights reserved.
|
|
|
|
|
// Use of this source code is governed by a MIT-style
|
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
2021-01-30 16:55:53 +08:00
|
|
|
package middleware
|
2021-01-26 23:36:53 +08:00
|
|
|
|
|
|
|
|
// DataStore represents a data store
|
|
|
|
|
type DataStore interface {
|
|
|
|
|
GetData() map[string]interface{}
|
|
|
|
|
}
|