mirror of
https://github.com/absmach/magistrala.git
synced 2026-08-07 07:14:46 +00:00
0794c2828e
Signed-off-by: Felix Gateru <felix.gateru@gmail.com>
15 lines
259 B
Go
15 lines
259 B
Go
// Copyright (c) Abstract Machines
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
package domains
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/absmach/supermq/domains"
|
|
)
|
|
|
|
type Authorization interface {
|
|
RetrieveStatus(ctx context.Context, id string) (domains.Status, error)
|
|
}
|