golib/gauth/auth.go

21 lines
255 B
Go
Raw Normal View History

2023-06-15 21:22:51 +08:00
//
// 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
}