mirror of
https://git.phreedom.club/localhost_frssoft/bloat.git
synced 2024-10-31 18:57:16 +00:00
22 lines
396 B
Go
22 lines
396 B
Go
package model
|
|
|
|
import (
|
|
"errors"
|
|
)
|
|
|
|
var (
|
|
ErrAppNotFound = errors.New("app not found")
|
|
)
|
|
|
|
type App struct {
|
|
InstanceDomain string `json:"instance_domain"`
|
|
InstanceURL string `json:"instance_url"`
|
|
ClientID string `json:"client_id"`
|
|
ClientSecret string `json:"client_secret"`
|
|
}
|
|
|
|
type AppRepo interface {
|
|
Add(app App) (err error)
|
|
Get(instanceDomain string) (app App, err error)
|
|
}
|