2"""ComponentAccumulator configuration for SQLiteDBSvc
4Copyright (C) 2002-2025 CERN for the benefit of the ATLAS collaboration
6from AthenaConfiguration.ComponentAccumulator
import ComponentAccumulator
7from AthenaConfiguration.ComponentFactory
import CompFactory
8def SQLiteDBSvcCfg(flags, name="SQLiteDBSvc", dbPath=":memory:
", **kwargs):
9 acc = ComponentAccumulator()
10 acc.addService(CompFactory.SQLiteDBSvc(name=name, DatabasePath=dbPath, **kwargs))
SQLiteDBSvcCfg(flags, name="SQLiteDBSvc", dbPath=":memory:", **kwargs)