mirror of
				https://github.com/superseriousbusiness/gotosocial.git
				synced 2025-11-04 07:02:24 -06:00 
			
		
		
		
	Grand test fixup (#138)
* start fixing up tests * fix up tests + automate with drone * fiddle with linting * messing about with drone.yml * some more fiddling * hmmm * add cache * add vendor directory * verbose * ci updates * update some little things * update sig
This commit is contained in:
		
					parent
					
						
							
								329a5e8144
							
						
					
				
			
			
				commit
				
					
						98263a7de6
					
				
			
		
					 2677 changed files with 1090869 additions and 219 deletions
				
			
		
							
								
								
									
										26
									
								
								vendor/github.com/go-pg/pg/v10/pgjson/json.go
									
										
									
										generated
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										26
									
								
								vendor/github.com/go-pg/pg/v10/pgjson/json.go
									
										
									
										generated
									
									
										vendored
									
									
										Normal file
									
								
							| 
						 | 
				
			
			@ -0,0 +1,26 @@
 | 
			
		|||
package pgjson
 | 
			
		||||
 | 
			
		||||
import (
 | 
			
		||||
	"encoding/json"
 | 
			
		||||
	"io"
 | 
			
		||||
)
 | 
			
		||||
 | 
			
		||||
var _ Provider = (*StdProvider)(nil)
 | 
			
		||||
 | 
			
		||||
type StdProvider struct{}
 | 
			
		||||
 | 
			
		||||
func (StdProvider) Marshal(v interface{}) ([]byte, error) {
 | 
			
		||||
	return json.Marshal(v)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func (StdProvider) Unmarshal(data []byte, v interface{}) error {
 | 
			
		||||
	return json.Unmarshal(data, v)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func (StdProvider) NewEncoder(w io.Writer) Encoder {
 | 
			
		||||
	return json.NewEncoder(w)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func (StdProvider) NewDecoder(r io.Reader) Decoder {
 | 
			
		||||
	return json.NewDecoder(r)
 | 
			
		||||
}
 | 
			
		||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue