You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
299 B
15 lines
299 B
package ugc |
|
|
|
import ( |
|
"context" |
|
|
|
"go-common/library/log" |
|
) |
|
|
|
// FinishArc updates the submit status from 1 to 0 |
|
func (d *Dao) FinishArc(c context.Context, aid int64) (err error) { |
|
if _, err = d.DB.Exec(c, _finishArc, aid); err != nil { |
|
log.Error("FinishVideos Error: %v", aid, err) |
|
} |
|
return |
|
}
|
|
|