mirror of
https://github.com/eduardolat/pgbackweb.git
synced 2026-02-09 21:58:25 -06:00
14 lines
207 B
Go
14 lines
207 B
Go
package databases
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/google/uuid"
|
|
)
|
|
|
|
func (s *Service) DeleteDatabase(
|
|
ctx context.Context, id uuid.UUID,
|
|
) error {
|
|
return s.dbgen.DatabasesServiceDeleteDatabase(ctx, id)
|
|
}
|