mirror of
https://github.com/bitwarden/server
synced 2026-02-18 10:23:27 +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);
|
|
}
|