mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-02-19 16:36:23 +00:00
23 lines
486 B
Objective-C
23 lines
486 B
Objective-C
/*
|
|
Copyright (C) todo...
|
|
*/
|
|
|
|
#import <SOGoAPI.h>
|
|
|
|
|
|
@implementation SOGoAPI
|
|
|
|
- (NSDictionary *) sogoVersionAction {
|
|
NSDictionary* result;
|
|
|
|
result = [[NSDictionary alloc] initWithObjectsAndKeys:
|
|
@"major", SOGO_MAJOR_VERSION,
|
|
@"minor", SOGO_MINOR_VERSION,
|
|
@"patch", SOGO_PATCH_VERSION,
|
|
nil];
|
|
[result autorelease];
|
|
return result;
|
|
}
|
|
|
|
|
|
@end /* SOGoAPI */ |