diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2025-01-22 10:32:10 +0200 |
---|---|---|
committer | Karen Arutyunov <karen@codesynthesis.com> | 2025-01-22 12:01:15 +0200 |
commit | f2cc61de479448a227136ee278941413560ecffc (patch) | |
tree | 8d9ae58c8cb6cc314888e636ea8b0efd0dad642f /mod/tenant-service.cxx | |
parent | b0515694b711c1ff57c2fc636e066d8639fd6da6 (diff) |
Add support for tenant_service_build_built::build_completed() notification
Diffstat (limited to 'mod/tenant-service.cxx')
-rw-r--r-- | mod/tenant-service.cxx | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/mod/tenant-service.cxx b/mod/tenant-service.cxx new file mode 100644 index 0000000..2c1f3bc --- /dev/null +++ b/mod/tenant-service.cxx @@ -0,0 +1,18 @@ +// file : mod/tenant-service.cxx -*- C++ -*- +// license : MIT; see accompanying LICENSE file + +#include <mod/tenant-service.hxx> + +namespace brep +{ + void tenant_service_build_built:: + build_completed (const string& /* tenant_id */, + const tenant_service&, + const diag_epilogue& /* log_writer */) const noexcept + { + // If this notification is requested, then this function needs to be + // overridden by the tenant service implementation. + // + assert (false); + } +} |