(ctx context.Context, arg CreateCourseParams)
| 34 | } |
| 35 | |
| 36 | func (q *Queries) CreateCourse(ctx context.Context, arg CreateCourseParams) error { |
| 37 | _, err := q.db.ExecContext(ctx, createCourse, arg.ID, arg.Name, arg.CategoryID) |
| 38 | return err |
| 39 | } |
nothing calls this directly
no test coverage detected