mirror of
https://github.com/elyby/chrly.git
synced 2024-12-02 11:40:56 +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
|
||
|
}
|