cml04-falcon-ui/storage/storage.go
2024-10-04 20:02:51 +02:00

10 lines
110 B
Go

package storage
type Storager interface{}
type storage struct{}
func New() Storager {
return &storage{}
}