(ctx context.Context)
| 56 | } |
| 57 | |
| 58 | func (t *ShowTable) CheckAccess(ctx context.Context) (bool, error) { |
| 59 | return checkDeveloperAccess(ctx, t.Runtime, false) |
| 60 | } |
| 61 | |
| 62 | func (t *ShowTable) Handler(ctx context.Context, args *ShowTableArgs) (*ShowTableResult, error) { |
| 63 | if args.Table == "" { |
nothing calls this directly
no test coverage detected