mirror of
https://github.com/danieleteti/delphimvcframework.git
synced 2024-11-16 08:15:53 +01:00
21 lines
330 B
ObjectPascal
21 lines
330 B
ObjectPascal
|
{ This file was automatically created by Lazarus. do not edit!
|
||
|
This source is only used to compile and install the package.
|
||
|
}
|
||
|
|
||
|
unit delphistomp;
|
||
|
|
||
|
interface
|
||
|
|
||
|
uses
|
||
|
StompClient, StompTypes, LazarusPackageIntf;
|
||
|
|
||
|
implementation
|
||
|
|
||
|
procedure Register;
|
||
|
begin
|
||
|
end;
|
||
|
|
||
|
initialization
|
||
|
RegisterPackage('delphistomp', @Register);
|
||
|
end.
|