You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
323 B
16 lines
323 B
package client
|
|
|
|
import (
|
|
"context"
|
|
"git.aiterp.net/lucifer/new-server/models"
|
|
)
|
|
|
|
func (client *Client) GetScenes(ctx context.Context) ([]models.Scene, error) {
|
|
scenes := make([]models.Scene, 0, 16)
|
|
err := client.Fetch(ctx, "GET", "/api/scenes", &scenes, nil)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return scenes, nil
|
|
}
|