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.
16 lines
277 B
16 lines
277 B
package types
|
|
|
|
import (
|
|
"context"
|
|
|
|
"git.aiterp.net/rpdata/api/models"
|
|
)
|
|
|
|
type fileResolver struct{}
|
|
|
|
func (r *fileResolver) Size(ctx context.Context, file *models.File) (int, error) {
|
|
return int(file.Size), nil
|
|
}
|
|
|
|
// FileResolver is a resolver
|
|
var FileResolver fileResolver
|