diff --git a/profile/fingerprint/const.go b/profile/fingerprint/const.go index 8eac794d..72edcce3 100644 --- a/profile/fingerprint/const.go +++ b/profile/fingerprint/const.go @@ -5,4 +5,5 @@ const ( PlatformLinux = "linux" PlatformWindows = "windows" PlatformMac = "macos" + PlatformOpenBSD = "openbsd" ) diff --git a/profile/fingerprint/const_openbsd.go b/profile/fingerprint/const_openbsd.go new file mode 100644 index 00000000..54ed4186 --- /dev/null +++ b/profile/fingerprint/const_openbsd.go @@ -0,0 +1,6 @@ +package profile + +// OS Identifier +const ( + osIdentifier = PlatformOpenBSD +)