mirror of
https://github.com/unidoc/unipdf.git
synced 2025-04-29 13:48:54 +08:00
10 lines
224 B
Go
10 lines
224 B
Go
package security
|
|
|
|
// AuthEvent is an event type that triggers authentication.
|
|
type AuthEvent string
|
|
|
|
const (
|
|
EventDocOpen = AuthEvent("DocOpen") // document open
|
|
EventEFOpen = AuthEvent("EFOpen") // embedded file open
|
|
)
|