// // auth.go // Copyright (C) 2022 tiglog // // Distributed under terms of the MIT license. // package gauth type sAuth struct { } func New() *sAuth { return &sAuth{} } // 是否支持 func (s *sAuth) Support() error { return nil }