mirror of
https://github.com/stashapp/stash.git
synced 2025-12-06 08:26:00 +01:00
* Move graphql generated files to api * Refactor identify options * Remove models.StashBoxes * Move ScraperSource to scraper package * Rename field strategy enums * Rename identify.TaskOptions to Options
12 lines
264 B
Go
12 lines
264 B
Go
package api
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/stashapp/stash/internal/dlna"
|
|
"github.com/stashapp/stash/internal/manager"
|
|
)
|
|
|
|
func (r *queryResolver) DlnaStatus(ctx context.Context) (*dlna.Status, error) {
|
|
return manager.GetInstance().DLNAService.Status(), nil
|
|
}
|