mirror of
https://github.com/nxshock/backuper.git
synced 2024-11-28 00:21:02 +05:00
nxshock
19e809966a
* update logger routines * add index file support * split file masks and path masks
16 lines
347 B
Go
16 lines
347 B
Go
package main
|
|
|
|
const (
|
|
// Расширение для файлов архивов
|
|
defaultExt = ".tar.zst"
|
|
|
|
// Формат времени для сообщений
|
|
defaultTimeFormat = "02.01.06 15:04"
|
|
|
|
// Формат времени для файлов
|
|
defaulFileNameTimeFormat = "2006-01-02_15-04-05"
|
|
|
|
//
|
|
indexFileName = "index.csv.zst"
|
|
)
|