9 lines
235 B
Go
9 lines
235 B
Go
package framework
|
|
|
|
import "github.com/maximhq/bifrost/framework/modelcatalog"
|
|
|
|
// FrameworkConfig represents the configuration for the framework.
|
|
type FrameworkConfig struct {
|
|
Pricing *modelcatalog.Config `json:"pricing,omitempty"`
|
|
}
|