From e8b53051f2c9068a8a45a3bd04e7427870b651b3 Mon Sep 17 00:00:00 2001 From: Kleissner Date: Tue, 16 Mar 2021 14:36:17 +0100 Subject: [PATCH] Convert tabs to white spaces --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 739544a..8b9cf39 100644 --- a/README.md +++ b/README.md @@ -10,25 +10,25 @@ Current version: 0.1 (pre-alpha) package main import ( - "fmt" - "os" + "fmt" + "os" - "github.com/PeernetOfficial/core" + "github.com/PeernetOfficial/core" ) func init() { - if status, err := core.LoadConfig("Settings.yaml"); err != nil { - fmt.Printf("Error loading config file: %s", err.Error()) - os.Exit(1) - } + if status, err := core.LoadConfig("Settings.yaml"); err != nil { + fmt.Printf("Error loading config file: %s", err.Error()) + os.Exit(1) + } core.InitLog() - core.Init() - core.UserAgent = "Your application/1.0" + core.Init() + core.UserAgent = "Your application/1.0" } func main() { - core.Connect() + core.Connect() // use functions from core package, for example to find and download files }