mirror of
https://github.com/zeek/zeek.git
synced 2025-10-11 19:18:19 +00:00
20 lines
457 B
C++
20 lines
457 B
C++
|
|
#include "Plugin.h"
|
|
|
|
namespace btest::plugin::Testing_WithPatchVersion
|
|
{
|
|
Plugin plugin;
|
|
}
|
|
|
|
using namespace btest::plugin::Testing_WithPatchVersion;
|
|
|
|
zeek::plugin::Configuration Plugin::Configure()
|
|
{
|
|
zeek::plugin::Configuration config;
|
|
config.name = "Testing::WithPatchVersion";
|
|
config.description = "Testing a plugin with a specified patch version";
|
|
config.version.major = 0;
|
|
config.version.minor = 1;
|
|
config.version.patch = 4;
|
|
return config;
|
|
}
|