License, querier interface
This commit is contained in:
parent
234671bc9d
commit
b9491679b2
2 changed files with 34 additions and 1 deletions
2
LICENSE
2
LICENSE
|
@ -1,4 +1,4 @@
|
||||||
Copyright (c) 2024 amigan.
|
Copyright (c) 2024 Daniel Ponte.
|
||||||
|
|
||||||
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
|
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
|
||||||
|
|
||||||
|
|
33
pkg/gordio/database/querier.go
Normal file
33
pkg/gordio/database/querier.go
Normal file
|
@ -0,0 +1,33 @@
|
||||||
|
// Code generated by sqlc. DO NOT EDIT.
|
||||||
|
// versions:
|
||||||
|
// sqlc v1.26.0
|
||||||
|
|
||||||
|
package database
|
||||||
|
|
||||||
|
import (
|
||||||
|
"context"
|
||||||
|
|
||||||
|
"github.com/google/uuid"
|
||||||
|
"github.com/jackc/pgx/v5/pgtype"
|
||||||
|
)
|
||||||
|
|
||||||
|
type Querier interface {
|
||||||
|
AddCall(ctx context.Context, arg AddCallParams) (uuid.UUID, error)
|
||||||
|
CreateAPIKey(ctx context.Context, owner int, expires pgtype.Timestamp, disabled *bool) (ApiKey, error)
|
||||||
|
CreateUser(ctx context.Context, arg CreateUserParams) (User, error)
|
||||||
|
DeleteAPIKey(ctx context.Context, apiKey uuid.UUID) error
|
||||||
|
DeleteUser(ctx context.Context, username string) error
|
||||||
|
GetAPIKey(ctx context.Context, apiKey uuid.UUID) (ApiKey, error)
|
||||||
|
GetTalkgroupTags(ctx context.Context, talkgroupID int) ([]string, error)
|
||||||
|
GetTalkgroupsWithAllTags(ctx context.Context, tags []string) ([]GetTalkgroupsWithAllTagsRow, error)
|
||||||
|
GetTalkgroupsWithAnyTags(ctx context.Context, tags []string) ([]GetTalkgroupsWithAnyTagsRow, error)
|
||||||
|
GetUserByID(ctx context.Context, id int32) (User, error)
|
||||||
|
GetUserByUID(ctx context.Context, id int32) (User, error)
|
||||||
|
GetUserByUsername(ctx context.Context, username string) (User, error)
|
||||||
|
GetUsers(ctx context.Context) ([]User, error)
|
||||||
|
SetCallTranscript(ctx context.Context, iD uuid.UUID, transcript *string) error
|
||||||
|
SetTalkgroupTags(ctx context.Context, systemID int, talkgroupID int, tags []string) error
|
||||||
|
UpdatePassword(ctx context.Context, username string, password string) error
|
||||||
|
}
|
||||||
|
|
||||||
|
var _ Querier = (*Queries)(nil)
|
Loading…
Reference in a new issue