mirror of
https://github.com/stashapp/stash.git
synced 2025-12-06 16:34:02 +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
11 lines
229 B
Go
11 lines
229 B
Go
package api
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/stashapp/stash/internal/manager"
|
|
)
|
|
|
|
func (r *queryResolver) SystemStatus(ctx context.Context) (*manager.SystemStatus, error) {
|
|
return manager.GetInstance().GetSystemStatus(), nil
|
|
}
|