# Add package :
- config server, cluster, logger, user & permission
- config client & builder
- interface for managing server, cluster and client
- test for nats cluster / client producer & subscriber

# Update packages : 
- pkg errors : constant to add package nats
- pkg logger : add function to read options
- pkg ioutils : add function to check / create file & path

# Dependancies : 
- Bump dependancies
- Add dependancies : 
  - github.com/nats-io/nats-server/v2
  - github.com/nats-io/nats.go
This commit is contained in:
Nicolas JUHEL
2021-05-06 12:56:53 +02:00
committed by GitHub
parent 115485e8a3
commit efd2784ac9
10 changed files with 2905 additions and 38 deletions

View File

@@ -40,14 +40,18 @@ const (
MinPkgMail = 1100
MinPkgMailer = 1200
MinPkgNetwork = 1300
MinPkgNutsDB = 1400
MinPkgOAuth = 1500
MinPkgAws = 1600
MinPkgRouter = 1700
MinPkgSemaphore = 1800
MinPkgSMTP = 1900
MinPkgStatic = 2000
MinPkgVersion = 2100
MinPkgNats = 1400
MinPkgNutsDB = 1500
MinPkgOAuth = 1600
MinPkgAws = 1700
MinPkgRouter = 1800
MinPkgSemaphore = 1900
MinPkgSMTP = 2000
MinPkgStatic = 2100
MinPkgVersion = 2200
MIN_AVAILABLE = 4000
MinAvailable = 4000
// MIN_AVAILABLE @Deprecated use MinAvailable constant
MIN_AVAILABLE = MinAvailable
)