mirror of
https://github.com/ddworken/hishtory.git
synced 2025-08-02 20:05:46 +02:00
17 lines
189 B
Go
17 lines
189 B
Go
//go:build !offline
|
|
// +build !offline
|
|
|
|
package lib
|
|
|
|
import (
|
|
"net/http"
|
|
)
|
|
|
|
func GetHttpClient() *http.Client {
|
|
return http.DefaultClient
|
|
}
|
|
|
|
func IsOfflineBinary() bool {
|
|
return false
|
|
}
|