1234567891011121314151617181920212223 |
- package stream
- import (
- "github.com/0xJacky/Nginx-UI/internal/helper"
- "github.com/0xJacky/Nginx-UI/internal/nginx"
- )
- // Duplicate duplicates a site by copying the file
- func Duplicate(src, dst string) (err error) {
- src = nginx.GetConfPath("streams-available", src)
- dst = nginx.GetConfPath("streams-available", dst)
- if helper.FileExists(dst) {
- return ErrDstFileExists
- }
- _, err = helper.CopyFile(src, dst)
- if err != nil {
- return
- }
- return
- }
|