21 lines
255 B
Go
21 lines
255 B
Go
|
//
|
||
|
// auth.go
|
||
|
// Copyright (C) 2022 tiglog <me@tiglog.com>
|
||
|
//
|
||
|
// Distributed under terms of the MIT license.
|
||
|
//
|
||
|
|
||
|
package gauth
|
||
|
|
||
|
type sAuth struct {
|
||
|
}
|
||
|
|
||
|
func New() *sAuth {
|
||
|
return &sAuth{}
|
||
|
}
|
||
|
|
||
|
// 是否支持
|
||
|
func (s *sAuth) Support() error {
|
||
|
return nil
|
||
|
}
|