mirror of
https://github.com/safing/portbase
synced 2025-09-01 10:09:50 +00:00
17 lines
281 B
Go
17 lines
281 B
Go
package database
|
|
|
|
type Interface struct {
|
|
local bool
|
|
internal bool
|
|
}
|
|
|
|
func NewInterface(local bool, internal bool) *Interface {
|
|
return &Interface{
|
|
local: local,
|
|
internal: internal,
|
|
}
|
|
}
|
|
|
|
func (i *Interface) Get(string key) (model.Model, error) {
|
|
return nil, nil
|
|
}
|