reifydb_core/event/
lifecycle.rs

1// Copyright (c) reifydb.com 2025
2// This file is licensed under the AGPL-3.0-or-later, see license.md file
3
4use crate::impl_event;
5
6/// Invoked during application startup before database initialization
7pub struct OnStartEvent {}
8
9impl_event!(OnStartEvent);
10
11/// Invoked once during database creation to setup the internal database system
12pub struct OnCreateEvent {}
13
14impl_event!(OnCreateEvent);