mirror of
https://github.com/mumble-voip/grumble.git
synced 2025-12-19 21:59:59 -08:00
14 lines
360 B
Go
14 lines
360 B
Go
// Copyright (c) 2012 The Grumble Authors
|
|
// The use of this source code is goverened by a BSD-style
|
|
// license that can be found in the LICENSE-file.
|
|
|
|
package replacefile
|
|
|
|
// Flag is a flag that allows you to ignore some errors
|
|
type Flag uint32
|
|
|
|
// The types of errors that can be ignored
|
|
const (
|
|
IgnoreMergeErrors Flag = 0x2
|
|
IgnoreACLErrors Flag = 0x4
|
|
)
|