First commit

This commit is contained in:
2026-04-08 19:36:03 +02:00
parent 66769b52fd
commit 3fb1145c6b
37 changed files with 2498 additions and 494 deletions

View File

@@ -0,0 +1,16 @@
import { TestBed } from '@angular/core/testing';
import { Keyring } from './keyring';
describe('Keyring', () => {
let service: Keyring;
beforeEach(() => {
TestBed.configureTestingModule({});
service = TestBed.inject(Keyring);
});
it('should be created', () => {
expect(service).toBeTruthy();
});
});