mirror of
https://github.com/bitwarden/server
synced 2026-02-18 18:33:29 +00:00
9 lines
122 B
C#
9 lines
122 B
C#
using Bit.Seeder.Pipeline;
|
|
|
|
namespace Bit.Seeder;
|
|
|
|
public interface IStep
|
|
{
|
|
void Execute(SeederContext context);
|
|
}
|