Files
Atay-Makhzan/modules/web/middleware/data.go
T

10 lines
211 B
Go
Raw Normal View History

2021-01-26 23:36:53 +08:00
// Copyright 2020 The Gitea Authors. All rights reserved.
// SPDX-License-Identifier: MIT
2021-01-26 23:36:53 +08:00
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{}
}