Skip to content

Commit

Permalink
doc: formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
thejurysays committed Feb 26, 2024
1 parent eb394be commit 1e0238e
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
<a href="https://www.beyondtrust.com">
<img src="assets/beyondtrust_logo.svg" alt="BeyondTrust" title="BeyondTrust" align="right" height="50">
</a>

# Go Client Library for Password Safe
The Go client library for Password Safe enables Go developers to easily manage passwords from Password Safe. It provide simplifications that significantly reduce the amount of code you need to write.

[![License](https://img.shields.io/badge/license-MIT%20-brightgreen.svg)](LICENSE)

## Prerequisites
Expand Down Expand Up @@ -97,12 +99,12 @@ Copy the text from the ps_cert.pem to a secret.
## Logging Abstraction
This library supports Zap, Logr, and go log package. The library can be extended to support other logging packages, see logging.go.
```
// create a zap logger
logger, _ := zap.NewProduction()
// logger, _ := zap.NewDevelopment()
// create a zap logger
logger, _ := zap.NewProduction()
// logger, _ := zap.NewDevelopment()
// create a zap logger wrapper
zapLogger := logging.NewZapLogger(logger)
// create a zap logger wrapper
zapLogger := logging.NewZapLogger(logger)
```

## License
Expand Down

0 comments on commit 1e0238e

Please sign in to comment.