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