Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name: CI

on:
push:
branches: [main]
branches: [main, develop]
pull_request:
branches: [main]
branches: [main, develop]

permissions:
contents: read
Expand Down
142 changes: 71 additions & 71 deletions cmd/claws/imports_custom.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ type HttpAPIDAO struct {
func NewHttpAPIDAO(ctx context.Context) (dao.DAO, error) {
cfg, err := appaws.NewConfig(ctx)
if err != nil {
return nil, apperrors.Wrap(err, "new apigateway/httpapis dao")
return nil, apperrors.Wrap(err, "new apigateway/http-apis dao")
}
return &HttpAPIDAO{
BaseDAO: dao.NewBaseDAO("apigateway", "http-apis"),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ type RestAPIDAO struct {
func NewRestAPIDAO(ctx context.Context) (dao.DAO, error) {
cfg, err := appaws.NewConfig(ctx)
if err != nil {
return nil, apperrors.Wrap(err, "new apigateway/restapis dao")
return nil, apperrors.Wrap(err, "new apigateway/rest-apis dao")
}
return &RestAPIDAO{
BaseDAO: dao.NewBaseDAO("apigateway", "rest-apis"),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ type StageV2DAO struct {
func NewStageV2DAO(ctx context.Context) (dao.DAO, error) {
cfg, err := appaws.NewConfig(ctx)
if err != nil {
return nil, apperrors.Wrap(err, "new apigateway/stagesv2 dao")
return nil, apperrors.Wrap(err, "new apigateway/stages-v2 dao")
}
return &StageV2DAO{
BaseDAO: dao.NewBaseDAO("apigateway", "stages-v2"),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ type DataSourceDAO struct {
func NewDataSourceDAO(ctx context.Context) (dao.DAO, error) {
cfg, err := appaws.NewConfig(ctx)
if err != nil {
return nil, apperrors.Wrap(err, "new appsync/datasources dao")
return nil, apperrors.Wrap(err, "new appsync/data-sources dao")
}
return &DataSourceDAO{
BaseDAO: dao.NewBaseDAO("appsync", "data-sources"),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ type GraphQLApiDAO struct {
func NewGraphQLApiDAO(ctx context.Context) (dao.DAO, error) {
cfg, err := appaws.NewConfig(ctx)
if err != nil {
return nil, apperrors.Wrap(err, "new appsync/graphqlapis dao")
return nil, apperrors.Wrap(err, "new appsync/graphql-apis dao")
}
return &GraphQLApiDAO{
BaseDAO: dao.NewBaseDAO("appsync", "graphql-apis"),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ type QueryExecutionDAO struct {
func NewQueryExecutionDAO(ctx context.Context) (dao.DAO, error) {
cfg, err := appaws.NewConfig(ctx)
if err != nil {
return nil, apperrors.Wrap(err, "new athena/queryexecutions dao")
return nil, apperrors.Wrap(err, "new athena/query-executions dao")
}
return &QueryExecutionDAO{
BaseDAO: dao.NewBaseDAO("athena", "query-executions"),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ type ComputeEnvironmentDAO struct {
func NewComputeEnvironmentDAO(ctx context.Context) (dao.DAO, error) {
cfg, err := appaws.NewConfig(ctx)
if err != nil {
return nil, apperrors.Wrap(err, "new batch/computeenvironments dao")
return nil, apperrors.Wrap(err, "new batch/compute-environments dao")
}
return &ComputeEnvironmentDAO{
BaseDAO: dao.NewBaseDAO("batch", "compute-environments"),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ type JobDefinitionDAO struct {
func NewJobDefinitionDAO(ctx context.Context) (dao.DAO, error) {
cfg, err := appaws.NewConfig(ctx)
if err != nil {
return nil, apperrors.Wrap(err, "new batch/jobdefinitions dao")
return nil, apperrors.Wrap(err, "new batch/job-definitions dao")
}
return &JobDefinitionDAO{
BaseDAO: dao.NewBaseDAO("batch", "job-definitions"),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ type JobQueueDAO struct {
func NewJobQueueDAO(ctx context.Context) (dao.DAO, error) {
cfg, err := appaws.NewConfig(ctx)
if err != nil {
return nil, apperrors.Wrap(err, "new batch/jobqueues dao")
return nil, apperrors.Wrap(err, "new batch/job-queues dao")
}
return &JobQueueDAO{
BaseDAO: dao.NewBaseDAO("batch", "job-queues"),
Expand Down
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ type AgentDAO struct {
func NewAgentDAO(ctx context.Context) (dao.DAO, error) {
cfg, err := appaws.NewConfig(ctx)
if err != nil {
return nil, apperrors.Wrap(err, "new bedrockagent/agents dao")
return nil, apperrors.Wrap(err, "new bedrock-agent/agents dao")
}
return &AgentDAO{
BaseDAO: dao.NewBaseDAO("bedrock-agent", "agents"),
Expand Down
Loading