mirror of
				https://github.com/superseriousbusiness/gotosocial.git
				synced 2025-10-30 23:12:25 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			8 lines
		
	
	
	
		
			204 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			8 lines
		
	
	
	
		
			204 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| package viper
 | |
| 
 | |
| // ExperimentalBindStruct tells Viper to use the new bind struct feature.
 | |
| func ExperimentalBindStruct() Option {
 | |
| 	return optionFunc(func(v *Viper) {
 | |
| 		v.experimentalBindStruct = true
 | |
| 	})
 | |
| }
 |