15 lignes
267 o
Go
15 lignes
267 o
Go
|
package oauth_client
|
||
|
|
||
|
import (
|
||
|
"github.com/NyaaPantsu/nyaa/models"
|
||
|
"github.com/pkg/errors"
|
||
|
)
|
||
|
|
||
|
func Delete(id string) error {
|
||
|
err := models.ORM.Where("id = ?", id).Delete(&models.OauthClient{}).Error
|
||
|
if err != nil {
|
||
|
return errors.WithStack(err)
|
||
|
}
|
||
|
return nil
|
||
|
}
|