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.
28 lines
839 B
28 lines
839 B
package postgres
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
|
|
"github.com/seaweedfs/seaweedfs/weed/pb/iam_pb"
|
|
)
|
|
|
|
func (store *PostgresStore) CreateServiceAccount(ctx context.Context, sa *iam_pb.ServiceAccount) error {
|
|
return fmt.Errorf("not implemented")
|
|
}
|
|
|
|
func (store *PostgresStore) UpdateServiceAccount(ctx context.Context, id string, sa *iam_pb.ServiceAccount) error {
|
|
return fmt.Errorf("not implemented")
|
|
}
|
|
|
|
func (store *PostgresStore) DeleteServiceAccount(ctx context.Context, id string) error {
|
|
return fmt.Errorf("not implemented")
|
|
}
|
|
|
|
func (store *PostgresStore) GetServiceAccount(ctx context.Context, id string) (*iam_pb.ServiceAccount, error) {
|
|
return nil, fmt.Errorf("not implemented")
|
|
}
|
|
|
|
func (store *PostgresStore) ListServiceAccounts(ctx context.Context) ([]*iam_pb.ServiceAccount, error) {
|
|
return nil, fmt.Errorf("not implemented")
|
|
}
|