mirror of
				https://github.com/owncast/owncast.git
				synced 2025-10-31 01:56:55 +08:00 
			
		
		
		
	 4d2066a76d
			
		
	
	4d2066a76d
	
	
	
		
			
			* Start cleaning up linter errors. For #357 * Fix unmarshalling NullTime values * More linter fixes * Remove commented code * Move defer up * Consolidate error check lines * Move error check to make sure row iteration was successful * Cleaner error check + do not recreate pipe if it exists * Consolidate hashing to generate client id
		
			
				
	
	
		
			23 lines
		
	
	
		
			379 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			379 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| package core
 | |
| 
 | |
| import (
 | |
| 	"github.com/owncast/owncast/config"
 | |
| 	"github.com/owncast/owncast/core/storageproviders"
 | |
| )
 | |
| 
 | |
| func setupStorage() error {
 | |
| 	handler.Storage = _storage
 | |
| 
 | |
| 	if config.Config.S3.Enabled {
 | |
| 		_storage = &storageproviders.S3Storage{}
 | |
| 	} else {
 | |
| 		_storage = &storageproviders.LocalStorage{}
 | |
| 	}
 | |
| 
 | |
| 	if err := _storage.Setup(); err != nil {
 | |
| 		return err
 | |
| 	}
 | |
| 
 | |
| 	return nil
 | |
| }
 |