22 lines
259 B
Objective-C
22 lines
259 B
Objective-C
//
|
|
// NetImageConfig.m
|
|
// mew-ios
|
|
//
|
|
// Created by 触海 on 2023/11/9.
|
|
//
|
|
|
|
#import "NetImageConfig.h"
|
|
|
|
@implementation NetImageConfig
|
|
|
|
- (instancetype)init
|
|
{
|
|
self = [super init];
|
|
if (self) {
|
|
_autoLoad = YES;
|
|
}
|
|
return self;
|
|
}
|
|
|
|
@end
|