[#493] node/config: Export ENV constants from internal package

Replace ENV prefix and separator to `internal` package in order to reuse
them for testing.

Signed-off-by: Leonard Lyubich <leonard@nspcc.ru>
This commit is contained in:
Leonard Lyubich 2021-05-21 20:36:37 +03:00 committed by Leonard Lyubich
parent 32dc80e7bc
commit 270b147205
2 changed files with 12 additions and 7 deletions

View file

@ -0,0 +1,8 @@
package internal
// EnvPrefix is a prefix of ENV variables related
// to storage node configuration.
const EnvPrefix = "neofs"
// EnvSeparator is a section separator in ENV variables.
const EnvSeparator = "_"