cml04-falcon-ui/storage/storage.go

10 lines
110 B
Go
Raw Normal View History

2024-10-04 20:02:51 +02:00
package storage
type Storager interface{}
type storage struct{}
func New() Storager {
return &storage{}
}