mirror of
https://github.com/elyby/chrly.git
synced 2024-11-16 18:22:58 +05:30
13 lines
217 B
Go
13 lines
217 B
Go
package mojangtextures
|
|
|
|
import (
|
|
"github.com/elyby/chrly/api/mojang"
|
|
)
|
|
|
|
type NilProvider struct {
|
|
}
|
|
|
|
func (p *NilProvider) GetForUsername(username string) (*mojang.SignedTexturesResponse, error) {
|
|
return nil, nil
|
|
}
|