mirror of
				https://codeberg.org/forgejo/forgejo.git
				synced 2025-11-04 08:21:11 +00:00 
			
		
		
		
	- Massive replacement of changing `code.gitea.io/gitea` to `forgejo.org`. - Resolves forgejo/discussions#258 Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/7337 Reviewed-by: Earl Warren <earl-warren@noreply.codeberg.org> Reviewed-by: Michael Kriese <michael.kriese@gmx.de> Reviewed-by: Beowulf <beowulf@beocode.eu> Reviewed-by: Panagiotis "Ivory" Vasilopoulos <git@n0toose.net> Co-authored-by: Gusted <postmaster@gusted.xyz> Co-committed-by: Gusted <postmaster@gusted.xyz>
		
			
				
	
	
		
			24 lines
		
	
	
	
		
			628 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
	
		
			628 B
		
	
	
	
		
			Go
		
	
	
	
	
	
// Copyright 2021 The Gitea Authors. All rights reserved.
 | 
						|
// SPDX-License-Identifier: MIT
 | 
						|
 | 
						|
package smtp_test
 | 
						|
 | 
						|
import (
 | 
						|
	auth_model "forgejo.org/models/auth"
 | 
						|
	"forgejo.org/services/auth"
 | 
						|
	"forgejo.org/services/auth/source/smtp"
 | 
						|
)
 | 
						|
 | 
						|
// This test file exists to assert that our Source exposes the interfaces that we expect
 | 
						|
// It tightly binds the interfaces and implementation without breaking go import cycles
 | 
						|
 | 
						|
type sourceInterface interface {
 | 
						|
	auth.PasswordAuthenticator
 | 
						|
	auth_model.Config
 | 
						|
	auth_model.SkipVerifiable
 | 
						|
	auth_model.HasTLSer
 | 
						|
	auth_model.UseTLSer
 | 
						|
	auth_model.SourceSettable
 | 
						|
}
 | 
						|
 | 
						|
var _ (sourceInterface) = &smtp.Source{}
 |