wgconf/conf/filewriter_linux.go

13 lines
260 B
Go

/* SPDX-License-Identifier: MIT
*
* Copyright (C) 2019-2021 WireGuard LLC. All Rights Reserved.
*/
package conf
func writeLockedDownFile(destination string, overwrite bool, contents []byte) error {
// check if file exists
// then write it
return nil
}