mirror of
				https://github.com/sammy-ette/Hilbish
				synced 2025-08-10 02:52:03 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			173 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			173 B
		
	
	
	
		
			Go
		
	
	
	
	
	
//go:build pprof
 | 
						|
 | 
						|
package main
 | 
						|
 | 
						|
import (
 | 
						|
    _ "net/http/pprof"
 | 
						|
    "net/http"
 | 
						|
)
 | 
						|
 | 
						|
func init() {
 | 
						|
    go func() {
 | 
						|
        http.ListenAndServe("localhost:8080", nil)
 | 
						|
    }()
 | 
						|
}
 |