18 lines
311 B
Go
Raw Normal View History

2019-06-03 09:32:43 +00:00
package arn
import (
"github.com/aerogo/aero"
"github.com/aerogo/api"
)
// Force interface implementations
var (
_ api.Creatable = (*ExternalMedia)(nil)
)
// Create sets the data for new external media.
func (media *ExternalMedia) Create(ctx aero.Context) error {
media.Service = "Youtube"
return nil
}